PredicateJoinExpressionBase Constructors
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.
Overloads
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression) |
Creates a new instance of the PredicateJoinExpressionBase class. |
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, IEnumerable<IAnnotation>) |
Creates a new instance of the PredicateJoinExpressionBase class. |
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, Boolean, IReadOnlyDictionary<String,IAnnotation>) |
Creates a new instance of the PredicateJoinExpressionBase class. |
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression)
Creates a new instance of the PredicateJoinExpressionBase class.
protected PredicateJoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Protected Sub New (table As TableExpressionBase, joinPredicate As SqlExpression)
Parameters
- table
- TableExpressionBase
A table source to join with.
- joinPredicate
- SqlExpression
A predicate to use for the join.
Applies to
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, IEnumerable<IAnnotation>)
Creates a new instance of the PredicateJoinExpressionBase class.
protected PredicateJoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Protected Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, annotations As IEnumerable(Of IAnnotation))
Parameters
- table
- TableExpressionBase
A table source to join with.
- joinPredicate
- SqlExpression
A predicate to use for the join.
- annotations
- IEnumerable<IAnnotation>
A collection of annotations associated with this expression.
Applies to
PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, Boolean, IReadOnlyDictionary<String,IAnnotation>)
Creates a new instance of the PredicateJoinExpressionBase class.
protected PredicateJoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, bool prunable, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * bool * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Protected Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, prunable As Boolean, Optional annotations As IReadOnlyDictionary(Of String, IAnnotation) = Nothing)
Parameters
- table
- TableExpressionBase
A table source to join with.
- joinPredicate
- SqlExpression
A predicate to use for the join.
- prunable
- Boolean
Whether this join expression may be pruned if nothing references a column on it.
- annotations
- IReadOnlyDictionary<String,IAnnotation>
A collection of annotations associated with this expression.
Applies to
Entity Framework