mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update naviget
This commit is contained in:
parent
3ff9c37622
commit
18a064e3d3
@ -75,6 +75,38 @@ namespace SqlSugar
|
||||
ExecuteByLay(item, list, SelectR3);
|
||||
_preList = list.ToList();
|
||||
}
|
||||
else if (i == 4)
|
||||
{
|
||||
var currentList = _preList.Where(it => it != null).ToList();
|
||||
if (RootList == null || currentList.Count == 0) return;
|
||||
List<object> list = ExecuteByLay(currentList);
|
||||
ExecuteByLay(item, list, SelectR4);
|
||||
_preList = list.ToList();
|
||||
}
|
||||
else if (i == 5)
|
||||
{
|
||||
var currentList = _preList.Where(it => it != null).ToList();
|
||||
if (RootList == null || currentList.Count == 0) return;
|
||||
List<object> list = ExecuteByLay(currentList);
|
||||
ExecuteByLay(item, list, SelectR5);
|
||||
_preList = list.ToList();
|
||||
}
|
||||
else if (i == 6)
|
||||
{
|
||||
var currentList = _preList.Where(it => it != null).ToList();
|
||||
if (RootList == null || currentList.Count == 0) return;
|
||||
List<object> list = ExecuteByLay(currentList);
|
||||
ExecuteByLay(item, list, SelectR6);
|
||||
_preList = list.ToList();
|
||||
}
|
||||
else if (i == 7)
|
||||
{
|
||||
var currentList = _preList.Where(it => it != null).ToList();
|
||||
if (RootList == null || currentList.Count == 0) return;
|
||||
List<object> list = ExecuteByLay(currentList);
|
||||
ExecuteByLay(item, list, SelectR7);
|
||||
_preList = list.ToList();
|
||||
}
|
||||
_preExpressionList.Add(item);
|
||||
_ListCallFunc = new List<Expression>();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user