Entity Framework vs LINQ to SQL

Both are introduced as latest technologies and at times a bit confusing when to use which. Entity Framework and LINQ to SQL have a lot in common but still different from each other in quite a few ways.
Entity Framework
  1. Enterprise Development.
  2. Works with Conceptual model of database.
  3. Works with all data sources.
  4. ".EDMX" is created while using Entity Framework.
LINQ
  1. Rapid Application Development.
  2. Works with objects in database.
  3. Mainly woks with SQL Server.
  4. ".dbml" is created while using LINQ to SQL.
Entity Framework is more targeted towards Enterprise Development where the schema is usually optimized for storage considerations like performance consistency and partitioning. Entity Framework is designed around exposing an application-oriented data model that is loosely coupled and may differ from the existing database schema. For example, you can map a single entity (class) to multiple or map multiple entities to the same table. Entity Framework has “.edmx” (ADO.NET Entity Model) file when added in the application.
 
LINQ to SQL mainly has features to support Rapid Application Development against SQL Server. LINQ to SQL allows you to have a strongly typed view of your existing database schema. You can build LINQ queries over tables and return results as strong typed objects. LINQ to SQL has “.dbml”(LINQ to SQL) file when added in the application. You can use LINQ to SQL by decorating the existing classes with the attributes.
 
Please review: Entity Framework Basics.
 
Thanks.
 
Satabdi Das Mohapatra.