コード例 #1
0
 private void InitialiseFiltering()
 {
     this.rootFilterGroup = new FilterGroup();
     this.Specification.Filters.Add(this.rootFilterGroup);
     this.currentFilterGroup = this.rootFilterGroup;
 }
コード例 #2
0
 public ISelectStatement <TEntity> EndNesting()
 {
     this.currentFilterGroup = this.currentFilterGroup.Parent;
     return(this);
 }
コード例 #3
0
ファイル: SelectCommand.cs プロジェクト: hafei/sqlrepo
 public ISelectCommand <TEntity> EndNesting()
 {
     this.currentFilterGroup = this.currentFilterGroup.Parent;
     return(this);
 }