StoredProcedureBuilder.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.StoredProcedureBuilder HasRowsAffectedResultColumn ();
abstract member HasRowsAffectedResultColumn : unit -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder
override this.HasRowsAffectedResultColumn : unit -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder
Public Overridable Function HasRowsAffectedResultColumn () As StoredProcedureBuilder
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.StoredProcedureBuilder HasRowsAffectedResultColumn (Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
abstract member HasRowsAffectedResultColumn : Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder
override this.HasRowsAffectedResultColumn : Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder
Public Overridable Function HasRowsAffectedResultColumn (buildAction As Action(Of StoredProcedureResultColumnBuilder)) As StoredProcedureBuilder
Parameters
- buildAction
- Action<StoredProcedureResultColumnBuilder>
Returns
The same builder instance so that multiple configuration calls can be chained.
Applies to
Entity Framework