示例#1
0
 public IFluentEntityWhereConjunctionSelect <T> WhereActive()
 {
     _whereHelper.Where(entity => entity.Deleted);
     _whereHelper.Equal(false);
     return(this);
 }
示例#2
0
 public IFluentEntityWhereConjunctionDelete <T> Equal <TKey>(TKey key)
 {
     _whereHelper.Equal(key);
     return(this);
 }