LINQ
Pages:
1
| 2
| 3
| 4
| 5
...
20
Next >
Resources by common categories
LINQ to SQL LINQ to SQL LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure... [read more]
LINQ to Entities LINQ to Entities provides Language-Integrated Query (LINQ) support that enables developers to write queries against the Entity Framework... [read more]
LINQ To DataSet Data Binding - LinqDataView restriction joins In previous episodes In the last post I made on LINQ To DataSet Binding, I talked about how to... [read more]
How can we get the highest ID number in an empty SQL table ? e.g: Assume we have a table with ten rows, but all of rows were deleted , now we wanna get the high... [read more]
Getting data from CSV is one of the mostly used business in applications/tools development. Here how we can do it in LINQ, You have a table called Emp with ... [read more]
LINQ to WMI Project Originally created by Emile Bosch, and was later updated by Eden Ridgway. “The LINQ to WMI project provides three libraries: LinqToWmi.C... [read more]
The following is a range of LINQ to XML tutorials and resources. A short summary has been included from the beginning of each. LINQ to XML LINQ to XML prov... [read more]
On the Tech Republic web site Justin James has written a review of Essential LINQ, the book Dinesh Kulkarni and I wrote about the key features of LINQ such as ... [read more]
I have an XmlElement with several attributes xeObject = <Object Name="Object1" Site="Site1" ... /> I also have a list of XmlElements with several (possibl... [read more]
Well well, the ADO.NET v.Next vision was finall unvieled. All looks good, but before we dive into that, it's probably better to understand DLINQ first. Here are... [read more]
A colleague was asking how to construct a particular LINQ “operator macro” today. Basically, he was finding it inconvenient to repeat boilerplate for partic... [read more]
Visual Studio 2010 has new API for LINQ (Language Integrated Query). This helps us to implement the power of Parallel Computing in declarative manner. LINQ wi... [read more]
Assuming I have Customer and Order objects, where one Customer can have many Orders (so the Order class has a CustomerId property), and I want to return a colle... [read more]
I have a LINQ2Entity problem, I want to get the value, string, from a database, so I select FProducts.Serial_number, and to end the query, I do .ToDictionary. T... [read more]
I’m trying to project parts of a Display and its list of locations from a WCF Data service into a custom type. Is this doable in WCF Data Services in a Silver... [read more]