次の方法で共有


PrimitivePropertyConfiguration.HasDatabaseGeneratedOption メソッド

定義

オーバーロード

HasDatabaseGeneratedOption(Nullable<DatabaseGeneratedOption>)

プロパティの値をデータベースで生成する方法を構成します。

HasDatabaseGeneratedOption(Nullable<DatabaseGeneratedOption>)

プロパティの値をデータベースで生成する方法を構成します。

HasDatabaseGeneratedOption(Nullable<DatabaseGeneratedOption>)

プロパティの値をデータベースで生成する方法を構成します。

public System.Data.Entity.ModelConfiguration.Configuration.PrimitivePropertyConfiguration HasDatabaseGeneratedOption (Nullable<System.ComponentModel.DataAnnotations.DatabaseGeneratedOption> databaseGeneratedOption);
member this.HasDatabaseGeneratedOption : Nullable<System.ComponentModel.DataAnnotations.DatabaseGeneratedOption> -> System.Data.Entity.ModelConfiguration.Configuration.PrimitivePropertyConfiguration
Public Function HasDatabaseGeneratedOption (databaseGeneratedOption As Nullable(Of DatabaseGeneratedOption)) As PrimitivePropertyConfiguration

パラメーター

databaseGeneratedOption
Nullable<DatabaseGeneratedOption>

データベースでプロパティの値を生成するために使用するパターン。 'null' を設定すると、データベースで生成されたパターン ファセットが プロパティから削除されます。 null に設定した場合、ランタイムの動作は None を指定した場合と同じになります。

戻り値

複数の呼び出しをチェーンできるように、同じ PrimitivePropertyConfiguration インスタンス。

適用対象

HasDatabaseGeneratedOption(Nullable<DatabaseGeneratedOption>)

プロパティの値をデータベースで生成する方法を構成します。

public System.Data.Entity.ModelConfiguration.Configuration.PrimitivePropertyConfiguration HasDatabaseGeneratedOption (Nullable<System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption> databaseGeneratedOption);
member this.HasDatabaseGeneratedOption : Nullable<System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption> -> System.Data.Entity.ModelConfiguration.Configuration.PrimitivePropertyConfiguration
Public Function HasDatabaseGeneratedOption (databaseGeneratedOption As Nullable(Of DatabaseGeneratedOption)) As PrimitivePropertyConfiguration

パラメーター

databaseGeneratedOption
Nullable<DatabaseGeneratedOption>

データベースでプロパティの値を生成するために使用するパターン。 'null' を設定すると、既定のオプションが使用されます。既定のオプションは、プロパティの種類、モデル内のセマンティクス (主キーの扱いが異なるなど)、使用されている規則のセットに応じて 、'None'、'Identity'、または 'Computed' のいずれかになります。

戻り値

複数の呼び出しをチェーンできるように、同じ PrimitivePropertyConfiguration インスタンス。

適用対象