Saturday, October 19, 2013

Why you should use entity Framework?
Some of the reasons to use entity framework   are:
Part of the .NET Framework and integrated into Visual Studio ,  that’s  means that is easy to integrate into  your application  you  haven’t to install anything  else. It’s also means that Entity Framework it’s widely used which guaranties timely bug fixes and  innovations and that really evidenced by rich  feature additions that were included with version 5.0 and 6.0.
Use  LINQ as the primary  query language ,which let you write query  directly  in the programming language against the entity objects  the code that you write as a benefit of IntelliSense and strong typing and compile  time  checking this  far better  than including strings a  SQL or another query  language within your code  .  Entity Framework remove  and LINQ remove all  of the database details from your  main  application code.
Independent of  the  data source that  used to persist data it manages all  of the  interactions  with the data store.
The  most important reason  it’s that  Microsoft has made a firm commitment to make  Entity Framework it’s data access  strategy  for foreseeable future .Starting  from   version 6 ,Entity Framework  is an open source project even  if it’s always supported   by the Entity Framework Team .This  has  a lot of advantages such as public  collaboration, auditability  , new features and a lot of refinements that make entity framework even more usable and useful for data applications.
for further  information please take a look at this  link  

No comments:

Post a Comment