Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EntityFramework and ADO.NET together?

Is there a reason why I couldn't use both EF and ADO.NET in my solution? The latter to handle the more intensive database calls that require faster processing, yet EF for the ORM benefits (code first)???

like image 407
jallen Avatar asked Jan 23 '26 10:01

jallen


1 Answers

There might be a misunderstanding, the EF and ADO.NET are actually working together. Look at the overview MSDN

Also a post that shows usage of stored procedure starting from EF4: A big step for Stored Procedures in EF4

like image 199
Yusubov Avatar answered Jan 26 '26 20:01

Yusubov