예제 #1
0
 public IEnumerable <T> Distinct <T>(string collectionName, string fieldName)
 {
     return(_reader.Distinct <T>(collectionName, fieldName));
 }
예제 #2
0
 public Task <IEnumerable <Y> > DistinctAsync <Y>(string collectionName, string fieldName)
 {
     return(Task.Run(() => { return _reader.Distinct <Y>(collectionName, fieldName); }));
 }