mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Update db.QueryableByObject
This commit is contained in:
@@ -209,6 +209,12 @@ namespace SqlSugar
|
||||
this.QueryableObj = method.Invoke(QueryableObj, new object[] { navProperyName });
|
||||
return this;
|
||||
}
|
||||
public QueryMethodInfo IgnoreColumns(params string [] ignoreColumns)
|
||||
{
|
||||
var method = QueryableObj.GetType().GetMyMethod("IgnoreColumns", 1, typeof(string[]));
|
||||
this.QueryableObj = method.Invoke(QueryableObj, new object[] { ignoreColumns });
|
||||
return this;
|
||||
}
|
||||
public QueryMethodInfo Includes(string navProperyName,string thenNavProperyName2)
|
||||
{
|
||||
var method = QueryableObj.GetType().GetMyMethod("IncludesByNameString", 2, typeof(string),typeof(string));
|
||||
|
Reference in New Issue
Block a user