次の方法で共有


AnnotatableBase.AddRuntimeAnnotation メソッド

定義

オーバーロード

AddRuntimeAnnotation(String, Annotation)

このオブジェクトにランタイム注釈を追加します。 指定した名前の注釈が既に存在する場合は をスローします。

AddRuntimeAnnotation(String, Object)

このオブジェクトにランタイム注釈を追加します。 指定した名前の注釈が既に存在する場合は をスローします。

AddRuntimeAnnotation(String, Annotation)

ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs

このオブジェクトにランタイム注釈を追加します。 指定した名前の注釈が既に存在する場合は をスローします。

protected virtual Microsoft.EntityFrameworkCore.Infrastructure.Annotation AddRuntimeAnnotation (string name, Microsoft.EntityFrameworkCore.Infrastructure.Annotation annotation);
abstract member AddRuntimeAnnotation : string * Microsoft.EntityFrameworkCore.Infrastructure.Annotation -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
override this.AddRuntimeAnnotation : string * Microsoft.EntityFrameworkCore.Infrastructure.Annotation -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
Protected Overridable Function AddRuntimeAnnotation (name As String, annotation As Annotation) As Annotation

パラメーター

name
String

追加する注釈のキー。

annotation
Annotation

追加する注釈。

戻り値

追加された注釈。

適用対象

AddRuntimeAnnotation(String, Object)

ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs
ソース:
AnnotatableBase.cs

このオブジェクトにランタイム注釈を追加します。 指定した名前の注釈が既に存在する場合は をスローします。

public virtual Microsoft.EntityFrameworkCore.Infrastructure.Annotation AddRuntimeAnnotation (string name, object? value);
abstract member AddRuntimeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
override this.AddRuntimeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
Public Overridable Function AddRuntimeAnnotation (name As String, value As Object) As Annotation

パラメーター

name
String

追加する注釈のキー。

value
Object

注釈に格納する値。

戻り値

新しく追加された注釈。

適用対象