An open API service indexing awesome lists of open source software.

https://github.com/dunghenry/.net_core_ef_mssql


https://github.com/dunghenry/.net_core_ef_mssql

dotnet-core entity-framework sql-server

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

## .Net Core + Entity Framework + SQL Server

### Install package manager console

```js
dotnet tool install --global dotnet-ef
```

### Migrations

```js
dotnet ef migrations add CreateInitial
```

### Create DB and tables

```js
dotnet ef database update
```

### Install package dependencies

```js
Microsoft.EntityFrameworkCore.Tools
Microsoft.EntityFrameworkCore.SqlServer
Microsoft.AspNetCore.Cors
Microsoft.EntityFrameworkCore.Design
```