Method Densify
Densify<TSource>(IQueryable<TSource>, Expression<Func<TSource, object>>, DensifyRange, IEnumerable<Expression<Func<TSource, object>>>)
Adds a $densify stage to the LINQ pipeline.
public static IQueryable<TSource> Densify<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, object>> field, DensifyRange range, IEnumerable<Expression<Func<TSource, object>>> partitionByFields = null)
Parameters
source
IQueryable<TSource>A sequence of values.
field
Expression<Func<TSource, object>>The field.
range
DensifyRangeThe range.
partitionByFields
IEnumerable<Expression<Func<TSource, object>>>The partition by fields.
Returns
- IQueryable<TSource>
The densified sequence of values.
Type Parameters
TSource
The type of the elements of
source
.
Densify<TSource>(IQueryable<TSource>, Expression<Func<TSource, object>>, DensifyRange, params Expression<Func<TSource, object>>[])
Adds a $densify stage to the LINQ pipeline.
public static IQueryable<TSource> Densify<TSource>(this IQueryable<TSource> source, Expression<Func<TSource, object>> field, DensifyRange range, params Expression<Func<TSource, object>>[] partitionByFields)
Parameters
source
IQueryable<TSource>A sequence of values.
field
Expression<Func<TSource, object>>The field.
range
DensifyRangeThe range.
partitionByFields
Expression<Func<TSource, object>>[]The partition by fields.
Returns
- IQueryable<TSource>
The densified sequence of values.
Type Parameters
TSource
The type of the elements of
source
.