RelationalEntityTypeExtensions.SetSqlQuery 方法

定義

多載

SetSqlQuery(IMutableEntityType, String)

設定用來提供實體類型的資料的 SQL 字串。

SetSqlQuery(IConventionEntityType, String, Boolean)

設定用來提供實體類型的資料的 SQL 字串。

SetSqlQuery(IMutableEntityType, String)

設定用來提供實體類型的資料的 SQL 字串。

public static void SetSqlQuery (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string name);
public static void SetSqlQuery (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string? name);
static member SetSqlQuery : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * string -> unit
<Extension()>
Public Sub SetSqlQuery (entityType As IMutableEntityType, name As String)

參數

entityType
IMutableEntityType

實體類型。

name
String

要設定的 SQL 字串。

適用於

SetSqlQuery(IConventionEntityType, String, Boolean)

設定用來提供實體類型的資料的 SQL 字串。

public static string SetSqlQuery (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, string name, bool fromDataAnnotation = false);
public static string? SetSqlQuery (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, string? name, bool fromDataAnnotation = false);
static member SetSqlQuery : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * string * bool -> string
<Extension()>
Public Function SetSqlQuery (entityType As IConventionEntityType, name As String, Optional fromDataAnnotation As Boolean = false) As String

參數

entityType
IConventionEntityType

實體類型。

name
String

要設定的 SQL 字串。

fromDataAnnotation
Boolean

指出是否已使用資料批註指定組態。

傳回

已設定的值。

適用於