Your database includes the following stored procedure:

CREATE PROCEDURE [dbo].[DeletePersonByID]
@PersonIDint
AS
DELETE FROM Person WHERE PersonID = @PersonID;

When you generate an Entity Data Model from the database, you import this stored procedure. You need to ensure that this stored procedure is called to delete a Person entity. What should you do?

 Posted by Rajkatie on 8/28/2012 | Category: ADO.NET Interview questions | Views: 2111 | Points: 40
Select from following answers:
  1. Map the Person entity type's delete operation to the imported function named DeletePersonByID.
  2. Map the imported function to the stored procedure function in the conceptual model.
  3. Rename the function that maps to the stored procedure DeletePerson.
  4. All Above

Show Correct Answer


Source: MeasureUp.Com | | Alert Moderator 

Comments or Responses

Login to post response