Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Cara Brown What is the difference between Entity Framework and LINQ to SQL? Entity Framework: "Supports databases like SQL, MySQL, DB2 etc. Allows one-to-one, one-to-many & many-to-many mappings between the Entity classes and the relational tables. Relationships are maintained in 3 different files - .csdl, .msl and .ssdl. Supports Complex Types. Supports Rapid application development with SQL Server, DB2, MySQL etc. LINQ to SQL: Supports only for SQL database. Allows only one-to-one mapping between the entity classes and the relational tables. .dbml file is generated for maintaining the relationships. No Support for Complex Types. Supports Rapid application development with SQL Server.
Related Topics