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