.Net Core 2 Sql Server Connection

I wanted to try .Net Core and created a new .Net Core 2 Webb application. Then I added another .Net Core class library to use as my level of data access. I thought I could use EF 6 and create a model based on my existing database. But I can not select EF when using Add - New Item. How does Microsoft want us to connect to SQL servers using .Net Core?

+4
source share
1 answer

You can use EF Core or Dapper .

0
source

Source: https://habr.com/ru/post/1691019/


All Articles