This commit is contained in:
sunkaixuan 2017-06-05 20:21:10 +08:00
parent 1a71a294fa
commit 90cda72708
2 changed files with 6 additions and 0 deletions

View File

@ -42,5 +42,10 @@ namespace SqlSugar
{
throw new NotImplementedException();
}
public ICodeFirst Where(Func<string, bool> filterMethod)
{
throw new NotImplementedException();
}
}
}

View File

@ -10,6 +10,7 @@ namespace SqlSugar
ICodeFirst IsBackupTable(bool isCreateTable = false);
ICodeFirst IsBackupData(bool isCreateTable = true);
ICodeFirst IsDeleteNoExistColumn(bool isDeleteNoExistColumn = true);
ICodeFirst Where(Func<string, bool> filterMethod);
void InitTables(string entitiesNamespace);
void InitTables(string [] entitiesNamespaces);
void InitTables(Type [] entityTypes);