First commit
This commit is contained in:
19
DaSaSo.EntityFramework/DaSaSoDbContext.cs
Normal file
19
DaSaSo.EntityFramework/DaSaSoDbContext.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using DaSaSo.Domain.Model;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.EntityFramework
|
||||
{
|
||||
public class DaSaSoDbContext : DbContext
|
||||
{
|
||||
public DaSaSoDbContext(DbContextOptions options) : base(options)
|
||||
{
|
||||
}
|
||||
|
||||
public DbSet<Client> Clients { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user