My stored procedure looks like this:
create Procedure procLoc
AS
BEGIN
select
pr.name, loc.address
from
Profile pr
join
Location loc on pr.id = loc.id
END
For the add function Import dialog box that comes up, there are the following options
- None
- Scalars
- Complex
- Entities
Which option would I select in this scenario?