ColumnExpression 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
ColumnExpression(String, IProperty, TableExpressionBase) |
Creates a new instance of a ColumnExpression. |
ColumnExpression(String, Type, TableExpressionBase) |
Creates a new instance of a ColumnExpression. |
ColumnExpression(String, IProperty, TableExpressionBase)
- Source:
- ColumnExpression.cs
- Source:
- ColumnExpression.cs
Creates a new instance of a ColumnExpression.
public ColumnExpression (string name, Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase tableExpression);
new Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression : string * Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression
Public Sub New (name As String, property As IProperty, tableExpression As TableExpressionBase)
Parameters
- name
- String
The column name.
- property
- IProperty
The corresponding property.
- tableExpression
- TableExpressionBase
The target table expression.
Applies to
ColumnExpression(String, Type, TableExpressionBase)
Creates a new instance of a ColumnExpression.
public ColumnExpression (string name, Type type, Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase tableExpression);
new Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression : string * Type * Microsoft.EntityFrameworkCore.Query.Expressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression
Public Sub New (name As String, type As Type, tableExpression As TableExpressionBase)
Parameters
- name
- String
The column name.
- type
- Type
The column type.
- tableExpression
- TableExpressionBase
The target table 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