hi
do i need to learn ADO.net with the asp.net core or i can stick only with LINQ and entity framwork
thank you
hi
do i need to learn ADO.net with the asp.net core or i can stick only with LINQ and entity framwork
thank you
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.
Gowtham CpPosted Sep 12, 2024, 2:11 AM
Hey,
You don’t really need to dive into ADO.NET if you’re already good with LINQ and Entity Framework in ASP.NET Core. EF Core pretty much covers all your database needs and lets you write queries easily with LINQ.
That said, ADO.NET can come in handy if you ever deal with older projects or need more control for specific database tasks. But honestly, for most modern projects, sticking to EF Core and LINQ should be just fine.
Hope that clears things up!
Mahesh ChandPosted Sep 13, 2024, 5:35 AM
Not really, unless your work can't be done using EFCore or Dapper. Those two should do the job. ADO.NET however gives better performance over those two but requires more work.