MTplus
MTplus

Reputation: 2391

.Net Core 2 Sql Server connection

I wanted to try out .Net Core and created a new .Net Core 2 Webb application. I then added another .Net Core class library in order to use that as my Data Access layer. I thought I could use EF 6 and create a model based on my exsisting database. But I cannot select EF when using Add - New Item. How does Microsoft want us to connect to SQL Servers when using .Net Core?

Upvotes: 4

Views: 3218

Answers (1)

Palle Due
Palle Due

Reputation: 6292

You can use EF Core or Dapper.

Upvotes: 1

Related Questions