QueryableMethods Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A class that provides reflection metadata for translatable LINQ methods.
public static class QueryableMethods
type QueryableMethods = class
Public Class QueryableMethods
- Inheritance
-
QueryableMethods
Remarks
See Implementation of database providers and extensions and How EF Core queries work for more information and examples.
Properties
Methods
GetAverageWithoutSelector(Type) |
Returns the MethodInfo for the Queryable.Average method without a selector for the given type. |
GetAverageWithSelector(Type) |
Returns the MethodInfo for the Queryable.Average method with a selector for the given type. |
GetSumWithoutSelector(Type) |
Returns the MethodInfo for the Queryable.Sum method without a selector for the given type. |
GetSumWithSelector(Type) |
Returns the MethodInfo for the Queryable.Sum method with a selector for the given type. |
IsAverageWithoutSelector(MethodInfo) |
Checks whether or not the given MethodInfo is one of the Queryable.Average without a selector. |
IsAverageWithSelector(MethodInfo) |
Checks whether or not the given MethodInfo is one of the Queryable.Average with a selector. |
IsSumWithoutSelector(MethodInfo) |
Checks whether or not the given MethodInfo is one of the Queryable.Sum without a selector. |
IsSumWithSelector(MethodInfo) |
Checks whether or not the given MethodInfo is one of the Queryable.Sum with a selector. |
Applies to
Entity Framework