Skip to main content

Entity Framework Versus LINQ To SQL (comparison summary)

LINQ to SQL and ADO.NET Entity Framework are extensions of ADO.NET and are introduced to avoid difficulties involved in writing programs using object oriented programming languages to access data residing in RDBMS.

LINQ To SQL
Entity Framework
Complexity
LINQ To SQL is easier to use.
Entity Framework is more complex compared to LINQ To SQL.
DB Server Support
LINQ To SQL supports only Microsoft SQL Server.
Entity Framework is built on top of ADO.NET data provider model and thus supports all existing ADO.NET data providers  i.e. IBM DB2, Sybase, Oracle, SQL Azure etc.
File Type
It uses Database Markup Language (DBML) file that contains XML mappings of entities to tables.
Entity Framework uses four files EDMX, CSDL, SSDL and MSL. The later three are generated at runtime.
Purpose
Used for rapid application development.
EF is used for enterprise n-tier application.
Coupling
LINQ To SQL is tightly coupled - object property to specific field of database or more correctly object mapping to a specific database schema
EF is loosely coupled.
Model
LINQ To SQL provides one-to-one mapping of tables to classes.
Entity Framework enable decoupling DB Server (Database Schema) and Entity Representation in terms of Model (Conceptual Schema). You can map one table to multiple entities or multiple tables to one entity.
Mapping Type
In LINQ To SQL each table is mapped to single class. Join table must be represented as a class. Also, complex types cannot be easily represented without creating separate table.
In Entity Framework a class can map to multiple tables.
Inheritance
In LINQ To SQL inheritance is difficult to apply. It supports Table Per Class Hierarchy (TPH).
In Entity Framework inheritance is simple to apply. It supports Table Per Class Hierarchy (TPH) and Table Per Type (TPT). It also provides limited support of Table Per Concrete Class (TPC).
Complex Type
LINQ To SQL does not support the creation of complex types.
Entity Framework supports the creation of complex types.
Complexity
LINQ To SQL is simple to learn and implement for Rapid Application Development, but it will not work in complex applications.
Entity Framework has more features which will take time to learn and implement, but it will work in complex applications.
Query Capability
LINQ To SQL has DataContext object through which we can query the database.
With the Entity Framework, we can query database using LINQ To Entities through the ObjectContext object and ESQL (provides SQL like query language). In addition, Entity Framework has ObjectQuery class (used with Object Services for dynamically constructing queries at runtime) and EntityClient provider (runs query against conceptual model).
Performance
LINQ To SQL is slow for the first time run. After first run provides acceptable performance.
Entity Framework is also slow for the first run, but after first run provides slightly better performance compared to LINQ To SQL.
Generate Database from Model
It has no capability to generate database from Model.
Entity Framework supports generation of database from Model.
Future Enhancement
Microsoft intended to obsolete LINQ To SQL after the Entity Framework releases. So it will not receive any future enhancements.
Entity Framework has future enhancements.

So while there is a lot of overlap, LINQ to SQL is targeted more toward rapidly developing applications against your existing Microsoft SQL Server schema, while the Entity Framework provides object- and storage-layer access to Microsoft SQL Server and 3rd party databases through a loosely coupled, flexible mapping to existing relational schema.
For detailed description about EF with sample please check here

Comments

Popular posts from this blog

Error 405 : ASP.NET Core Web API PUT and DELETE Methods not allowed

Recently, while working with .Net core API I came across the issue of “Error 405 — Methods not Allowed” After some research, I found out that both GET and POST requests working fine but neither PUT nor DELETE requests working. Another thing is that the PUT and DELETE request was also working fine on my local machine but failed when we host on our Azure server. When I explored the issue on the web it led me to the conclusion that WebDAVModule seems to set PUT and DELETE request methods disabled by default and due to that PUT and DELETE throw 405 errors. To make the PUT and DELETE requests work, we need to override the WebDAVModule setting in web.config file by adding the below settings under “ system.webServer ”. < system.webServer >   < modules runAllManagedModulesForAllRequests = " false " >     < remove name = " WebDAVModule " />   </ modules > </ system.webServer > There may be 2 web.config files in y...

C#: Merging Excel cells with NPOI HSSFWorkbook

In this post we’ll see how to merge the two or more cell with each other while creating the excel sheet using NPOI . Mentioned below is code to merge multiple cells, in this example we are merging first cell to fifth cell of first row (you can adjust row or cell range by passing particular parameters in CellRangeAddress). //Created new Workbook var hwb = new NPOI.HSSF.UserModel. HSSFWorkbook (); //Create worksheet with name. var sheet = hwb.CreateSheet( "new sheet" ); //Create row and cell. var row = sheet.CreateRow(0); var cell = row.CreateCell(0); ; //Set text inside cell cell.SetCellValue( "This is Merged cell" ); cell.CellStyle.WrapText = true ; //define cell range address // parameters: -> first row to last and first cell to last cell var cra = new NPOI.SS.Util. CellRangeAddress (0, 0, 0, 4); //Add merged region to sheet. sheet.AddMergedRegion(cra); Hope this solution helps you J

How to set Swagger as the default start page for API hosted on the Azure web app?

I created an Asp.Net Core 2.x Web API and configured Swagger on it, below is the code added in Configure method under Startup.cs file, for full swagger configuration, check here //Add swagger configuration app.UseSwagger(); app.UseSwaggerUI(c => {     c.SwaggerEndpoint( "../swagger/v1/swagger.json" , "Test API V1" ); }); On my local machine when I run the API it is automatically redirected to the Swagger page. However, when I hosted this API as an Azure web app it is not redirecting directly to the Swagger and to access the swagger, I had to append /swagger in the URL, for example, https://testapi.azurewebsites.net/swagger/ Solution: Set RoutePrefix to string.Empty under app.UseSwaggerUI like below: app.UseSwaggerUI(c => {     c.SwaggerEndpoint( "../swagger/v1/swagger.json" , "Test API V1" );      c.RoutePrefix = string .Empty; // Set Swagger UI at apps root }); And that’s it, now when you b...