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)
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>)
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework