示例#1
0
 internal Between(
     BaseIndexedValue <TObj, TAttribute> indexedValue,
     TAttribute startAt, bool includeStartAt,
     TAttribute endAt, bool includeEndAt)
 {
     this.IndexedValue   = indexedValue;
     this.StartAt        = startAt;
     this.IncludeStartAt = includeStartAt;
     this.EndAt          = endAt;
     this.IncludeEndAt   = includeEndAt;
 }
示例#2
0
 internal SmallerThan(BaseIndexedValue <TObj, TAttribute> indexedValue, TAttribute value, bool orEqual)
 {
     this.IndexedValue = indexedValue;
     this.Value        = value;
     this.OrEqual      = orEqual;
 }
示例#3
0
 internal BetweenBuilder(BaseIndexedValue <TObj, CompoundValue <T1, T2> > indexedValue, CompoundValue <T1, T2> startAt, bool includeStartAt)
 {
     this.IndexedValue   = indexedValue;
     this.StartAt        = startAt;
     this.IncludeStartAt = includeStartAt;
 }
示例#4
0
文件: All.cs 项目: wxtech/MarcelloDB
 internal All(BaseIndexedValue <TObj, TAttribute> indexedValue)
 {
     this.IndexedValue = indexedValue;
 }