CosmosEntityTypeExtensions.SetETagPropertyName 方法

定義

多載

SetETagPropertyName(IMutableEntityType, String)

設定用來儲存 ETag 索引鍵的屬性名稱。

SetETagPropertyName(IConventionEntityType, String, Boolean)

設定用來儲存 ETag 的屬性名稱。

SetETagPropertyName(IMutableEntityType, String)

設定用來儲存 ETag 索引鍵的屬性名稱。

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

參數

entityType
IMutableEntityType

要為其設定 etag 屬性名稱的實體類型。

name
String

要設定的名稱。

適用於

SetETagPropertyName(IConventionEntityType, String, Boolean)

設定用來儲存 ETag 的屬性名稱。

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

參數

entityType
IConventionEntityType

要為其設定 ETag 屬性名稱的實體類型。

name
String

要設定的名稱。

fromDataAnnotation
Boolean

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

傳回

適用於