RelationalPropertyExtensions.GetComputedColumnSql 方法

定义

重载

GetComputedColumnSql(IProperty)

返回用作此属性映射到的列的计算值的 SQL 表达式。

GetComputedColumnSql(IReadOnlyProperty)

返回用作此属性映射到的列的计算值的 SQL 表达式。

GetComputedColumnSql(IProperty, StoreObjectIdentifier)

返回用作此属性映射到的列的计算值的 SQL 表达式。

GetComputedColumnSql(IReadOnlyProperty, StoreObjectIdentifier)

返回用作此属性映射到的列的计算值的 SQL 表达式。

GetComputedColumnSql(IProperty)

Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs

返回用作此属性映射到的列的计算值的 SQL 表达式。

public static string GetComputedColumnSql (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member GetComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.IProperty -> string
<Extension()>
Public Function GetComputedColumnSql (property As IProperty) As String

参数

property
IProperty

属性。

返回

用作此属性映射到的列的计算值的 SQL 表达式。

适用于

GetComputedColumnSql(IReadOnlyProperty)

Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs

返回用作此属性映射到的列的计算值的 SQL 表达式。

public static string? GetComputedColumnSql (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> string
<Extension()>
Public Function GetComputedColumnSql (property As IReadOnlyProperty) As String

参数

property
IReadOnlyProperty

属性。

返回

用作此属性映射到的列的计算值的 SQL 表达式。

适用于

GetComputedColumnSql(IProperty, StoreObjectIdentifier)

Source:
RelationalPropertyExtensions.cs

返回用作此属性映射到的列的计算值的 SQL 表达式。

public static string GetComputedColumnSql (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> string
<Extension()>
Public Function GetComputedColumnSql (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As String

参数

property
IProperty

属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

用作此属性映射到的列的计算值的 SQL 表达式。

适用于

GetComputedColumnSql(IReadOnlyProperty, StoreObjectIdentifier)

Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs
Source:
RelationalPropertyExtensions.cs

返回用作此属性映射到的列的计算值的 SQL 表达式。

public static string? GetComputedColumnSql (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetComputedColumnSql : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> string
<Extension()>
Public Function GetComputedColumnSql (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As String

参数

property
IReadOnlyProperty

属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

用作此属性映射到的列的计算值的 SQL 表达式。

适用于