17 lines
367 B
C#
17 lines
367 B
C#
using DBCreateEF.Context;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DBCreateEF
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
using (var context = new AppDbContext())
|
|
{
|
|
context.Database.EnsureCreated();
|
|
//context.Database.Migrate();
|
|
}
|
|
}
|
|
}
|
|
} |