mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add: QueryableByObject.MergeTable
This commit is contained in:
parent
9cfd9c0c23
commit
8f2daeabdf
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user