mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
14 lines
245 B
C#
14 lines
245 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace CC.Yi.Model
|
|||
|
|
{
|
|||
|
|
public partial class DataContext : DbContext
|
|||
|
|
{
|
|||
|
|
public DataContext(DbContextOptions<DataContext> options) : base(options)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|