FreeSql ISelect/IUpdate/IInsert/IDelete 增加 AsTable 方法,实现分表

This commit is contained in:
28810
2019-03-05 21:04:52 +08:00
parent f9fef12d37
commit 90f69f1b57
38 changed files with 813 additions and 87 deletions

View File

@ -32,5 +32,9 @@ namespace FreeSql {
await _fsql.Insert<TEntity>().AppendData(entity).ExecuteAffrowsAsync();
return entity;
}
public virtual string ToDataTable(TEntity entity) {
return null;
}
}
}