ConventionUpdateModificationStoredProcedureConfiguration.Result 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
Result(PropertyInfo, String) |
Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns. |
Result(String, String) |
Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns. |
Result(PropertyInfo, String)
Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns.
public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Result (System.Reflection.PropertyInfo propertyInfo, string columnName);
member this.Result : System.Reflection.PropertyInfo * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration
Parameters
- propertyInfo
- PropertyInfo
The property to configure the result for.
- columnName
- String
The name of the result column.
Returns
The same configuration instance so that multiple calls can be chained.
Applies to
Result(String, String)
Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns.
public System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration Result (string propertyName, string columnName);
member this.Result : string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration
Public Function Result (propertyName As String, columnName As String) As ConventionUpdateModificationStoredProcedureConfiguration
Parameters
- propertyName
- String
The name of the property to configure the result for.
- columnName
- String
The name of the result column.
Returns
The same configuration instance so that multiple calls can be chained.
Applies to
Entity Framework