ConventionUpdateModificationStoredProcedureConfiguration.Result Method

 

Configures a column of the result for this stored procedure to map to a property.

Namespace:   System.Data.Entity.ModelConfiguration.Configuration
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodResult(PropertyInfo, String)

Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns.

System_CAPS_pubmethodResult(String, String)

Configures a column of the result for this stored procedure to map to a property. This is used for database generated columns.


ConventionUpdateModificationStoredProcedureConfiguration.Result Method (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 ConventionUpdateModificationStoredProcedureConfiguration Result(
	PropertyInfo propertyInfo,
	string columnName
)

Parameters

propertyInfo
Type: System.Reflection.PropertyInfo

The property to configure the result for.

columnName
Type: System.String

The name of the result column.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration

The same configuration instance so that multiple calls can be chained.


ConventionUpdateModificationStoredProcedureConfiguration.Result Method (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 ConventionUpdateModificationStoredProcedureConfiguration Result(
	string propertyName,
	string columnName
)

Parameters

propertyName
Type: System.String

The name of the property to configure the result for.

columnName
Type: System.String

The name of the result column.

Return Value

Type: System.Data.Entity.ModelConfiguration.Configuration.ConventionUpdateModificationStoredProcedureConfiguration

The same configuration instance so that multiple calls can be chained.