SqlServerPropertyBuilderExtensions.ForSqlServerHasColumnName Method
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
ForSqlServerHasColumnName(PropertyBuilder, String) |
Configures the column that the property maps to when targeting SQL Server. |
ForSqlServerHasColumnName<TProperty>(PropertyBuilder<TProperty>, String) |
Configures the column that the property maps to when targeting SQL Server. |
ForSqlServerHasColumnName(PropertyBuilder, String)
Configures the column that the property maps to when targeting SQL Server.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder ForSqlServerHasColumnName (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string name);
static member ForSqlServerHasColumnName : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function ForSqlServerHasColumnName (propertyBuilder As PropertyBuilder, name As String) As PropertyBuilder
Parameters
- propertyBuilder
- PropertyBuilder
The builder for the property being configured.
- name
- String
The name of the column.
Returns
The same builder instance so that multiple calls can be chained.
Applies to
ForSqlServerHasColumnName<TProperty>(PropertyBuilder<TProperty>, String)
Configures the column that the property maps to when targeting SQL Server.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> ForSqlServerHasColumnName<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string name);
static member ForSqlServerHasColumnName : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function ForSqlServerHasColumnName(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), name As String) As PropertyBuilder(Of TProperty)
Type Parameters
- TProperty
The type of the property being configured.
Parameters
- propertyBuilder
- PropertyBuilder<TProperty>
The builder for the property being configured.
- name
- String
The name of the column.
Returns
The same builder instance so that multiple calls can be chained.
Applies to
Entity Framework