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