Esempio n. 1
0
 public static IFindFluent <T, T> QuerySort <T>(this IFindFluent <T, T> cursor, ClrQuery query)
 {
     return(cursor.Sort(query.BuildSort <T>()));
 }
Esempio n. 2
0
 public static IFindFluent <MongoAssetEntity, MongoAssetEntity> AssetSort(this IFindFluent <MongoAssetEntity, MongoAssetEntity> cursor, ClrQuery query)
 {
     return(cursor.Sort(query.BuildSort <MongoAssetEntity>()));
 }
Esempio n. 3
0
 public static IAggregateFluent <T> QuerySort <T>(this IAggregateFluent <T> cursor, ClrQuery query)
 {
     return(cursor.Sort(query.BuildSort <T>()));
 }