SqlServerPropertyBuilderExtensions.ForSqlServerHasComputedColumnSql 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ForSqlServerHasComputedColumnSql(PropertyBuilder, String) |
将 属性配置为在面向SQL Server时映射到计算列。 |
ForSqlServerHasComputedColumnSql<TProperty>(PropertyBuilder<TProperty>, String) |
将 属性配置为在面向SQL Server时映射到计算列。 |
ForSqlServerHasComputedColumnSql(PropertyBuilder, String)
将 属性配置为在面向SQL Server时映射到计算列。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder ForSqlServerHasComputedColumnSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string sql);
static member ForSqlServerHasComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function ForSqlServerHasComputedColumnSql (propertyBuilder As PropertyBuilder, sql As String) As PropertyBuilder
参数
- propertyBuilder
- PropertyBuilder
要配置的属性的生成器。
- sql
- String
计算列值的 SQL 表达式。
返回
同一生成器实例,以便可以链接多个调用。
适用于
ForSqlServerHasComputedColumnSql<TProperty>(PropertyBuilder<TProperty>, String)
将 属性配置为在面向SQL Server时映射到计算列。
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> ForSqlServerHasComputedColumnSql<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string sql);
static member ForSqlServerHasComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function ForSqlServerHasComputedColumnSql(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), sql As String) As PropertyBuilder(Of TProperty)
类型参数
- TProperty
要配置的属性的类型。
参数
- propertyBuilder
- PropertyBuilder<TProperty>
要配置的属性的生成器。
- sql
- String
计算列值的 SQL 表达式。
返回
同一生成器实例,以便可以链接多个调用。