Files
Yi.Admin/CC.Yi.Model/T4DataContext.cs

13 lines
310 B
C#
Raw Normal View History

2021-03-20 14:12:24 +08:00
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Text;
2021-03-25 20:44:12 +08:00
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
2021-03-20 14:12:24 +08:00
namespace CC.Yi.Model
{
2021-03-25 20:44:12 +08:00
public partial class DataContext :IdentityDbContext
2021-03-20 14:12:24 +08:00
{
public DbSet<student> student { get; set; }
}
}