mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
11 lines
244 B
C#
11 lines
244 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
namespace CC.Yi.Model
|
|||
|
|
{
|
|||
|
|
public partial class DataContext :DbContext
|
|||
|
|
{
|
|||
|
|
public DbSet<student> student { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|