13 lines
312 B
C#
13 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace IRaCIS.Core.Test.GenerateFolder;
|
|
|
|
/// <summary>
|
|
/// 必须要,因为Program 依赖反向工程生成的dbcontext 实例化,获取数据库模型
|
|
/// </summary>
|
|
public partial class TempContext : DbContext
|
|
{
|
|
}
|