mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
QueryableByObject.AddJoinInfo(type,string,string,jointype)
This commit is contained in:
parent
756e6cfe5f
commit
02533af0ee
@ -80,8 +80,8 @@ namespace SqlSugar
|
||||
}
|
||||
public QueryMethodInfo AddJoinInfo(Type joinEntityType, string shortName, string onWhere, JoinType type = JoinType.Left)
|
||||
{
|
||||
var method = QueryableObj.GetType().GetMyMethod("AddJoinInfo", 4, typeof(string), typeof(string), typeof(string), typeof(JoinType));
|
||||
this.QueryableObj = method.Invoke(QueryableObj, new object[] { this.Context.EntityMaintenance.GetTableName(joinEntityType), shortName, onWhere, type });
|
||||
var method = QueryableObj.GetType().GetMyMethod("AddJoinInfo", 4, typeof(Type), typeof(string), typeof(string), typeof(JoinType));
|
||||
this.QueryableObj = method.Invoke(QueryableObj, new object[] { joinEntityType, shortName, onWhere, type });
|
||||
return this;
|
||||
}
|
||||
public QueryMethodInfo GroupBy(List<GroupByModel> models)
|
||||
|
Loading…
Reference in New Issue
Block a user