, - , (GetOne(), Save(), Search(), Delete() ..).
, "" , , , LINQ . , ToList() IQueryable<T> , LINQ to Objects.
, , , LINQ to SQL , , LINQ to SQL Entity Framework (), .
The only exception that I would make is when LINQ to SQL objects must cross the service boundary, i.e. Dispatched as data transfer objects to or from the WCF service. In this case, I consider it a good idea to have a separate, lightweight object model that supports serialization - do not send your LINQ to SQL objects directly through the wiring.
source
share