Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
We want to start a new project in Dot Net Core. We have a team which is good experienced in Enterprise Library(Data Access Application Block, Logging Application Block, Exception Handling Application Block) but they are new to Dot Net Core. We just want your suggestions on what should we use for Data Access i.e. Enterprise Library or Entity Framework.

What I have tried:

Team is very much familiar with Stored Procedures and working on Enterprise Library from last 4-5 years. But not much familiar with entity framework.

Thanks
Posted
Updated 27-Dec-18 1:34am

1 solution

You have already tagged the question with your answer. The best bid you have in ASP.NET Core is to go with Entity Framework Core. Entity Framework Core can take care of your most intensive data access requirements, and LINQ can take care of backend query generation (can use stored procedures too).

Check the tutorials here, EF Core is merely a bunch of C# APIs, nothing advanced needed to explore the runtime apart from LINQ. Overview - EF Core | Microsoft Docs[^]. Your engineers will not have a tough time learning these.

If your users are already experienced in Enterprise Library then they already know how .NET framework can be used in enterprise environments, .NET Core is just a way to use-libraries-that-are-needed. Also, I just found (with a quick Google) that you still have some support of Enterprise Library in .NET Core, asp.net web api - Is there a way to use enterprise library in .NET Core 1.1.2 web api - Stack Overflow[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900