JoinExpressionBase 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
JoinExpressionBase(TableExpressionBase) |
Creates a new instance of the JoinExpressionBase class. |
JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>) |
Creates a new instance of the JoinExpressionBase class. |
JoinExpressionBase(TableExpressionBase, Boolean, IReadOnlyDictionary<String,IAnnotation>) |
Creates a new instance of the JoinExpressionBase class. |
JoinExpressionBase(TableExpressionBase)
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
Creates a new instance of the JoinExpressionBase class.
protected JoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
Protected Sub New (table As TableExpressionBase)
Parameters
- table
- TableExpressionBase
A table source to join with.
Applies to
JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>)
- Source:
- JoinExpressionBase.cs
- Source:
- JoinExpressionBase.cs
Creates a new instance of the JoinExpressionBase class.
protected JoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
Protected Sub New (table As TableExpressionBase, annotations As IEnumerable(Of IAnnotation))
Parameters
- table
- TableExpressionBase
A table source to join with.
- annotations
- IEnumerable<IAnnotation>
A collection of annotations associated with this expression.
Applies to
JoinExpressionBase(TableExpressionBase, Boolean, IReadOnlyDictionary<String,IAnnotation>)
- Source:
- JoinExpressionBase.cs
Creates a new instance of the JoinExpressionBase class.
protected JoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, bool prunable, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * bool * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
Protected Sub New (table As TableExpressionBase, prunable As Boolean, Optional annotations As IReadOnlyDictionary(Of String, IAnnotation) = Nothing)
Parameters
- table
- TableExpressionBase
A table source to join with.
- 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