Files
DeMiWebApi_yuyubo/FrameWork/SqlSugar/Interface/ICodeFirst.cs

17 lines
478 B
C#
Raw Normal View History

2025-06-30 19:22:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public partial interface ICodeFirst
{
SqlSugarClient Context { get; set; }
ICodeFirst BackupTable(int maxBackupDataRows=int.MaxValue);
void InitTables(string entitiesNamespace);
void InitTables(string [] entitiesNamespaces);
void InitTables(params Type [] entityTypes);
void InitTables(Type entityType);
}
}