Synchronization code

This commit is contained in:
sunkaixuan 2024-05-01 10:34:07 +08:00
parent 9e8a15d255
commit 8938691fe2

View File

@ -19,6 +19,13 @@ namespace SqlSugar
#endregion
#region Sql API
public QueryMethodInfo MergeTable()
{
var method = QueryableObj.GetType().GetMethod("MergeTable");
this.QueryableObj = method.Invoke(QueryableObj, new object[] { });
return this;
}
public QueryMethodInfo AS(string tableName)
{
string shortName = $"{tableName}_1";