18 lines
421 B
C#
18 lines
421 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Yi.Framework.Model.Models;
|
|
|
|
namespace Yi.Framework.Model
|
|
{
|
|
public partial class DataContext :DbContext
|
|
{
|
|
public DbSet<menu> menu { get; set; }
|
|
public DbSet<mould> mould { get; set; }
|
|
public DbSet<role> role { get; set; }
|
|
public DbSet<user> user { get; set; }
|
|
}
|
|
}
|
|
|