Share via


ConventionInsertModificationStoredProcedureConfiguration.Result Method

Definition

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.ConventionInsertModificationStoredProcedureConfiguration Result (System.Reflection.PropertyInfo propertyInfo, string columnName);
member this.Result : System.Reflection.PropertyInfo * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionInsertModificationStoredProcedureConfiguration

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.ConventionInsertModificationStoredProcedureConfiguration Result (string propertyName, string columnName);
member this.Result : string * string -> System.Data.Entity.ModelConfiguration.Configuration.ConventionInsertModificationStoredProcedureConfiguration
Public Function Result (propertyName As String, columnName As String) As ConventionInsertModificationStoredProcedureConfiguration

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