Top "Asenumerable" questions

Understanding .AsEnumerable() in LINQ to SQL

Given the following LINQ to SQL query: var test = from i in Imports where i.IsActive select i; The interpreted …

c# linq linq-to-sql asenumerable
Datatable does not contain a definition for AsEnumerable using LinqBridge1.1 in C#2.0

i'm trying to use linq in c#2.0(linqbridge) to search for a patient name in my database, but i'm getting …

linq asenumerable linqbridge
datatable.AsEnumerable doesn't work (basic example)

Dim x = From row In f_table.AsEnumerable() Select row("Crop") From what I understand, the "f_table.AsEnumerable" should …

vb.net linq asenumerable