コード例 #1
0
        public ICompositePredicate AddNot()
        {
            this.extent.FlushCache();
            var noneFilter = new AllorsPredicateNotSql(this.extent);

            this.filters.Add(noneFilter);
            return(noneFilter);
        }
コード例 #2
0
ファイル: Composite.cs プロジェクト: whesius/allors
 public ICompositePredicate AddNot()
 {
     this.extent.FlushCache();
     var noneFilter = new AllorsPredicateNotSql(this.extent);
     this.filters.Add(noneFilter);
     return noneFilter;
 }