OwnedNavigationStoredProcedureBuilder.HasRowsAffectedResultColumn Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
HasRowsAffectedResultColumn() |
Configures a new column of the result that returns the rows affected for this stored procedure if no such column exists. |
HasRowsAffectedResultColumn(Action<StoredProcedureResultColumnBuilder>) |
Configures a new column of the result that returns the rows affected for this stored procedure if no such column exists. |
HasRowsAffectedResultColumn()
Configures a new column of the result that returns the rows affected for this stored procedure if no such column exists.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder HasRowsAffectedResultColumn ();
abstract member HasRowsAffectedResultColumn : unit -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder
override this.HasRowsAffectedResultColumn : unit -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder
Public Overridable Function HasRowsAffectedResultColumn () As OwnedNavigationStoredProcedureBuilder
Returns
The same builder instance so that multiple configuration calls can be chained.
Applies to
HasRowsAffectedResultColumn(Action<StoredProcedureResultColumnBuilder>)
Configures a new column of the result that returns the rows affected for this stored procedure if no such column exists.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder HasRowsAffectedResultColumn (Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
abstract member HasRowsAffectedResultColumn : Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder
override this.HasRowsAffectedResultColumn : Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder
Public Overridable Function HasRowsAffectedResultColumn (buildAction As Action(Of StoredProcedureResultColumnBuilder)) As OwnedNavigationStoredProcedureBuilder
Parameters
- buildAction
- Action<StoredProcedureResultColumnBuilder>
An action that performs configuration of the column.
Returns
The same builder instance so that multiple configuration calls can be chained.
Applies to
Entity Framework