parent
93b6009d31
commit
8bcb8127bf
12 changed files with 411 additions and 1 deletions
15
Data/MyhmContext.cs
Normal file
15
Data/MyhmContext.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Myhm.Models;
|
||||
|
||||
namespace Myhm.Data
|
||||
{
|
||||
public class MyhmContext(DbContextOptions<MyhmContext> options) : DbContext(options)
|
||||
{
|
||||
|
||||
//public DbSet<Myhm.Models.Ban> Ban { get; set; } = default!;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue