mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-06-07 10:28:23 +08:00
2bd67778bf
v3.0.0
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|