Select from following answers:- Using the Entity Designer, select the GetStudentGrade stored procedure and configure the return type to the StudentGrade entity class.

- Using the Entity Designer, select the StudentGrade entity class and configure the Update command to use the GetStudentGrade stored procedure.
- Configure the DataLoadOptions instance related to the DataContext.
- All Above
Use the Entity Designer, select the GetStudentGrade stored procedure and configure the return type to the StudentGrade entity class. This causes the StudentGrade entity type to be returned.
Using the Entity Designer to configure the Update command to use the stored procedure affects how the StudentGrade entity is updated. It does not affect the stored procedure method return type.
The DataLoadOptions class is used to instruct the framework about which objects to retrieve when a particular type is retrieved. It is unrelated to using stored procedures.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator