예제 #1
0
 /// <summary>
 /// Include DBRef field in result query execution
 /// </summary>
 public LiteQueryable <T> Include <K>(Expression <Func <T, K> > dbref)
 {
     _collection = _collection.Include(dbref);
     return(this);
 }
예제 #2
0
 /// <summary>
 /// Include DBRef path in result query execution
 /// </summary>
 public LiteQueryable <T> Include(string path)
 {
     _collection = _collection.Include(path);
     return(this);
 }
예제 #3
0
 internal LiteQueryable(LiteCollection <T> collection)
 {
     _collection = collection;
     _foreach    = new List <Action <T, int> >();
     _query      = null;
 }