Data Access Articles

LINQ Using C# – LINQ Operators

LINQ (Language INtegrated Query) was introduced with of C# 3.0 and .NET Framework 3.5. LINQ enables developers to write structured type-safe queries over local object collections and remote data sources. In essence it isĀ  SQL for C#. LINQ allows for querying over any collection which implements IEnumerable<> (including arrays, lists, XML DOM, remote data objects [...]

Read more