18 lines
533 B
C#
18 lines
533 B
C#
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);
|
|
ICodeFirst SetStringDefaultLength(int length);
|
|
void InitTables(string entitiesNamespace);
|
|
void InitTables(string [] entitiesNamespaces);
|
|
void InitTables(params Type [] entityTypes);
|
|
void InitTables(Type entityType);
|
|
}
|
|
}
|