OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity>.HasResultColumn メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
HasResultColumn(String) |
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。 |
HasResultColumn(String, Action<StoredProcedureResultColumnBuilder>) |
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。 |
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>) |
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。 |
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>, Action<StoredProcedureResultColumnBuilder>) |
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。 |
HasResultColumn(String)
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn (string propertyName);
override this.HasResultColumn : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn (propertyName As String) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
パラメーター
- propertyName
- String
プロパティ名。
戻り値
複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
HasResultColumn(String, Action<StoredProcedureResultColumnBuilder>)
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn (string propertyName, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
override this.HasResultColumn : string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn (propertyName As String, buildAction As Action(Of StoredProcedureResultColumnBuilder)) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
パラメーター
- propertyName
- String
プロパティ名。
- buildAction
- Action<StoredProcedureResultColumnBuilder>
列の構成を実行するアクション。
戻り値
複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>)
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn<TProperty> (System.Linq.Expressions.Expression<Func<TDependentEntity,TProperty>> propertyExpression);
override this.HasResultColumn : System.Linq.Expressions.Expression<Func<'DependentEntity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn(Of TProperty) (propertyExpression As Expression(Of Func(Of TDependentEntity, TProperty))) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
型パラメーター
- TProperty
パラメーター
- propertyExpression
- Expression<Func<TDependentEntity,TProperty>>
構成するプロパティを表すラムダ式 (blog => blog.Url
)。
戻り値
複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>, Action<StoredProcedureResultColumnBuilder>)
このストアド プロシージャの結果の新しい列を構成します。 これは、データベースで生成された列に使用されます。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn<TProperty> (System.Linq.Expressions.Expression<Func<TDependentEntity,TProperty>> propertyExpression, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
override this.HasResultColumn : System.Linq.Expressions.Expression<Func<'DependentEntity, 'Property>> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn(Of TProperty) (propertyExpression As Expression(Of Func(Of TDependentEntity, TProperty)), buildAction As Action(Of StoredProcedureResultColumnBuilder)) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
型パラメーター
- TProperty
パラメーター
- propertyExpression
- Expression<Func<TDependentEntity,TProperty>>
構成するプロパティを表すラムダ式 (blog => blog.Url
)。
- buildAction
- Action<StoredProcedureResultColumnBuilder>
列の構成を実行するアクション。
戻り値
複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。
適用対象
Entity Framework