I have a SQL 2000 database. SQL 2000 does not support Entity Framework v2. I would like to use LINQ to manage collections in memory.
Assuming I'm not using Entity Framework v2, are there any parts of LINQ in .NET 4 that don't work with SQL 2000? Are TableAdapters doing CRUD operations to use?
As far as I know, using the Entity framework requires explicitly adding the * .edmx file. Therefore, adding *.dmbl (linq to sql) or DataSet (*.xsd) not a problem. It's right? In other words, any LINQ function generates incompatible code, for example. objects?
source share