Hi,
What is difference between in ADO.Net & Entity Framework and Which one is faster and why?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted May 7, 2013, 8:14 AM
hi,
ADO.net is a set of Libraries that provides data access as part of .NET framework. where as Entity framework is ORM which is provide layer over the ADO.net and map database field and table to object.
yes ADO.net performance is good, but is also depend on how query written and which container used at code level i.e. dataset or data reader.
Please refer ling it help you to understand comparison between ADO.net and EF.
http://blogs.msdn.com/b/adonet/archive/2008/03/27/ado-net-entity-framework-performance-comparison.aspx
hope this will help you.
Mahesh KumarPosted May 6, 2013, 1:52 PM
ADO.net is faster.