Linq
Tag details
Welcome to the 'Linq' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'Linq'.
Look up
"Linq"
at The Free Dictionary
Latest blogosphere posts tagged “Linq”
-
ElementAtOrDefault
MSMVPS.COM —
Authority: 605
VB 9 or later has a particular feature that can make life easier in some circumstances: the compiler allows you to access indexed items on non indexed enumerables. Let’s say you have code such as: Dim items as IEnumerable(Of String) . . . . For i = 0 to items.Count - 1 Debug.Print ...1 day ago -
EXPERIENCED .NET DEVELOPERS FOR ENTERPRISE PRODUCTS
pak-jobs-IT —
Authority: 131
We need experienced.Net developers for a high profile project.DETAILS:Multiple OpeningsDesignation: System AnalystThe candidates should have 2-4 years of .Net ExperienceMust have good knowledge of the following tools/technologies:(.Net Frame Work 35, C/C++,C#, VB.Net, LINQ, XML, HTML, Java Script, AJAX, SQL Server, ...4 days ago -
This is why algorithms rule
Frans Bouma's blog —
Authority: 449
For the people who know me a little its no surprise, but in case you didnt know: I love algorithms. I think theyre the cornerstone of good software and they should be your first source of wisdom for every piece of software youre creating. This post will show an example of what I mean by that and how easy it is if ...5 days ago -
Linqpad
LieberLieber Software TeamBlog —
Authority: 114
While writing all the LINQ statements for an ASP.Net MVC and ADO.NET Microsoft Entity framework project, I came across the Linqpad tool. If you are working with Linq you should have a look at this amazing tool.6 days ago -
Event Handling with Linq
Software Development Videos —
Authority: 140
Paul Batum shows how you can use Linq to handle Events in windows applications.1 week ago -
Open XML SDK 2.0 December 2009 CTP for Microsoft Office
D' Technology Weblog —
Authority: 544
Open XML is an open ECMA 376 standard and is also approved as ISO/IEC 29500 standard that defines a set of XML schemas for representing spreadsheets, charts, presentations, and word processing documents. Microsoft Office Word 2007, Excel 2007, and PowerPoint 2007 all use Open XML as default file format. Open XML file ...1 week ago -
LINQ query operators and null lists
Jimmy Bogard —
Authority: 455
One of my pet peeves with the LINQ extension methods is their inability to handle null source lists. For example, this will throw an ArgumentNullException: [ Test ] public void Should_handle_nulls(){ List int> ints = null ; ints.Any(num => num Now I know what you’re saying – why not check for ...1 week ago -
My Computation Abstraction Talk Slides for Functional Exchange
Sadek Drobi's Blog —
Authority: 91
Computation Abstraction: Going beyond programming language control syntax, or what we’ve missed from FP for so long in mainstream For a long time, and due to the lack of main FP concepts in most mainstream languages, we missed opportunities to abstraction and code expressiveness and conciseness. With today’s ...1 week ago -
Object-relational Mappers: Friend or foe?
I'd rather play golf —
Authority: 111
On Tuesday, 15 December 2009 I’ll be presenting a one-hour webinar entitled “Object-relational Mappers: Friend or foe?”: Object relational mappers (ORMs) such as LINQ, Hibernate, and ActiveRecord bridge the gap between the relational database world, and the object-oriented world. By abstracting the database ...1 week ago -
NServiceBus - Linq To SQL Saga Persister Part 2.0
Living in the Tech Avalanche Generation —
Authority: 112
In a previous post I showed in part what it would take to create a Saga Persister using LINQ To SQL, however it wasn’t the complete story, therefore I decided on creating two new complete persisters to demonstrate how to use the extensibility points provided by NServiceBus to create a persistence mechanism for ...1 week ago -
Get the Primary Key PropertyInfo of any Linq-to-SQL Table
naspinski —
Authority: 109
Easily find any tables Primary Key property In my search for a universal generic Get() accessor for Linq-to-SQL DataContexts, I figured I would have to dynamically find the primary key of a table.Using Reflection and the Attributes applied to L2S tables, it is not difficult at all: //get the primary key ...1 week ago -
Microsoft Web Development Summit 2009
Maarten Balliauw {blog} —
Authority: 409
Being in the US for 2 times in a month ( PDC09 and Web Development Summit) is fun, tiring and rewarding. The WDS09 was an invite-only event organized by Microsoft, focusing on interaction between Microsoft and the PHP community. I must say: the event has been helpful and interesting for both parties! The ...1 week ago -
Advance Your Composite Application MVVM to the Next Level – Use Attributes to Automatically Populate Your View Model with Service Calls
Lab49 Blog —
Authority: 142
Abstract MVVM is a proven design pattern in WFP/Silverlight world. Its use helps achieve separation of concerns, frees UI from any logic to enhance testing, and generally makes the code easier to understand and maintain. In many LOB multi-tier applications MVVM is extended to include a presenter class. Presenter ...1 week ago -
LINQ acquires IPVG mobile communications unit
Equipment For Photographers —
Authority: 167
Zoom Expands Digital Gyms Net Zoom Media & Marketing increased the distribution of its digital media network in health and fitness clubs announcing Thursday (Dec. 3) exclusive distribution deals with Urban Active and Club One. With the additions, Zoom’s ClubCom digital network fortifies its regional reach in ...1 week ago -
How to avoid passing property names as strings using C# 3.0 Expression Trees
Ivan Zlatev —
Authority: 99
Referencing property names via strings is evil. Consider this simplistic example: private int _myProperty;public int MyProperty{ get { return _myProperty; } set { _myProperty = value; NotifyPropertyChanged (this, "MyProperty") }}// Somewhere in a different project or file...private void ...1 week ago -
Most Amazing ReFactor Using ReSharper EAP 5.0 I’ve Seen!
PeterKellner.net —
Authority: 115
This one is just to amazing to not blog about. I’ve been a die heart ReSharper user for quite a while and recently have started using their early access versions. Primarily... This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming1 week ago -
Fantastic Friday – Links, thoughts and more…!
{ null != Steve } —
Authority: 109
Happy Friday to you I’m looking forward to my employer’s ( Strategic Data Systems ) Christmas party tommorow night. It’s always a fun time. SquareUp by Twitter http://squareup.com/ Twitter founder formally unveils Square project - this is pretty cool I think – the ability to have ...1 week ago -
Dynamic Linq with Expression Trees
Lab49 Blog —
Authority: 142
I recently came across a project requirement for the client to create custom validation rules for retrieving data from the SQL database. The rules needed be applied against any number of member applications, and can be altered by the client at any point. From the client perspective, the administration of the rules ...2 weeks ago -
LINQ to CSV using DynamicObject and TextFieldParser
Thinq Linq —
Authority: 398
In the first post of this series, we parsed our CSV file by simply splitting each line on a comma. While this works for simple files, it becomes problematic when consuming CSV files where individual fields also contains commas. Consider the following sample input: CustomerID,COMPANYNAME,Contact ...2 weeks ago -
LINQ to CSV using DynamicObject Part 2
Thinq Linq —
Authority: 398
In the last post , I showed how to use DynamicObject to make consuming CSV files easier. In that example, we showed how we can access CSV columns using the standard dot (.) notation that we use on other objects. Using DynamicObject, we can refer to item.CompanyName and item.Contact_Name rather than item(0) and ...2 weeks ago

