次の方法で共有


RelationalPropertyBuilderExtensions.HasDefaultValue メソッド

定義

オーバーロード

HasDefaultValue(PropertyBuilder)

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

HasDefaultValue(PropertyBuilder, Object)

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

HasDefaultValue(IConventionPropertyBuilder, Object, Boolean)

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

HasDefaultValue<TProperty>(PropertyBuilder<TProperty>)

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

HasDefaultValue<TProperty>(PropertyBuilder<TProperty>, Object)

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

HasDefaultValue(PropertyBuilder)

ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder);
static member HasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasDefaultValue (propertyBuilder As PropertyBuilder) As PropertyBuilder

パラメーター

propertyBuilder
PropertyBuilder

構成されているプロパティのビルダー。

戻り値

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

注釈

引数を指定せずに呼び出されると、このメソッドは、列に何らかの種類の既定値制約があることを EF に指示します。正確に何かを指定する必要はありません。 これは、EF を既存のデータベースにマッピングする場合に役立ちます。

詳細と例については、「 データベースの既定値 」を参照してください。

適用対象

HasDefaultValue(PropertyBuilder, Object)

ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, object value);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, object value = default);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, object? value);
static member HasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasDefaultValue (propertyBuilder As PropertyBuilder, value As Object) As PropertyBuilder
<Extension()>
Public Function HasDefaultValue (propertyBuilder As PropertyBuilder, Optional value As Object = Nothing) As PropertyBuilder

パラメーター

propertyBuilder
PropertyBuilder

構成されているプロパティのビルダー。

value
Object

列の既定値です。

戻り値

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

注釈

詳細と例については、「 データベースの既定値 」を参照してください。

適用対象

HasDefaultValue(IConventionPropertyBuilder, Object, Boolean)

ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, object value, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? HasDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, object? value, bool fromDataAnnotation = false);
static member HasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * obj * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function HasDefaultValue (propertyBuilder As IConventionPropertyBuilder, value As Object, Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

パラメーター

propertyBuilder
IConventionPropertyBuilder

構成されているプロパティのビルダー。

value
Object

列の既定値です。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示します。

戻り値

構成が適用された場合は同じビルダー インスタンス。 null それ以外の場合は 。

注釈

詳細と例については、「 データベースの既定値 」を参照してください。

適用対象

HasDefaultValue<TProperty>(PropertyBuilder<TProperty>)

ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValue<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder);
static member HasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasDefaultValue(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty)) As PropertyBuilder(Of TProperty)

型パラメーター

TProperty

構成されるプロパティの型。

パラメーター

propertyBuilder
PropertyBuilder<TProperty>

構成されているプロパティのビルダー。

戻り値

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

注釈

引数を指定せずに呼び出されると、このメソッドは、列に何らかの種類の既定値制約があることを EF に指示します。正確に何かを指定する必要はありません。 これは、EF を既存のデータベースにマッピングする場合に役立ちます。

詳細と例については、「 データベースの既定値 」を参照してください。

適用対象

HasDefaultValue<TProperty>(PropertyBuilder<TProperty>, Object)

ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs
ソース:
RelationalPropertyBuilderExtensions.cs

リレーショナル データベースを対象とする場合にプロパティがマップされる列の既定値を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValue<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, object value);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValue<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, object value = default);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasDefaultValue<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, object? value);
static member HasDefaultValue : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasDefaultValue(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), value As Object) As PropertyBuilder(Of TProperty)
<Extension()>
Public Function HasDefaultValue(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), Optional value As Object = Nothing) As PropertyBuilder(Of TProperty)

型パラメーター

TProperty

構成されるプロパティの型。

パラメーター

propertyBuilder
PropertyBuilder<TProperty>

構成されているプロパティのビルダー。

value
Object

列の既定値です。

戻り値

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

注釈

詳細と例については、「 データベースの既定値 」を参照してください。

適用対象