次の方法で共有


RelationalPropertyBuilderExtensions.HasComment メソッド

定義

オーバーロード

HasComment(PropertyBuilder, String)

列に適用するコメントを構成します

HasComment(IConventionPropertyBuilder, String, Boolean)

列に適用するコメントを構成します

HasComment<TProperty>(PropertyBuilder<TProperty>, String)

列に適用するコメントを構成します

HasComment(PropertyBuilder, String)

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

列に適用するコメントを構成します

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasComment (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string comment);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasComment (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, string? comment);
static member HasComment : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasComment (propertyBuilder As PropertyBuilder, comment As String) As PropertyBuilder

パラメーター

propertyBuilder
PropertyBuilder

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

comment
String

列のコメント。

戻り値

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

注釈

詳細と例については、「 エンティティ型とリレーションシップのモデル 化」を参照してください。

適用対象

HasComment(IConventionPropertyBuilder, String, Boolean)

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

列に適用するコメントを構成します

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder HasComment (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, string comment, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? HasComment (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, string? comment, bool fromDataAnnotation = false);
static member HasComment : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function HasComment (propertyBuilder As IConventionPropertyBuilder, comment As String, Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

パラメーター

propertyBuilder
IConventionPropertyBuilder

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

comment
String

列のコメント。

fromDataAnnotation
Boolean

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

戻り値

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

注釈

詳細と例については、「 エンティティ型とリレーションシップのモデル 化」を参照してください。

適用対象

HasComment<TProperty>(PropertyBuilder<TProperty>, String)

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

列に適用するコメントを構成します

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasComment<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string comment);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasComment<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string? comment);
static member HasComment : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasComment(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), comment As String) As PropertyBuilder(Of TProperty)

型パラメーター

TProperty

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

パラメーター

propertyBuilder
PropertyBuilder<TProperty>

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

comment
String

列のコメント。

戻り値

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

注釈

詳細と例については、「 エンティティ型とリレーションシップのモデル 化」を参照してください。

適用対象