1
Answer

How to Set tables data into entity Using Entity Framework.

Photo of Hemant Mehra

Hemant Mehra

10y
765
1
Create Procedure spABC
as
begin
select ID,Groups,NoOfChild from table1
select ID,Name,Address    from table2
select ID,UserType from table3
end


In entity.edmx of spABC only table1 entities are showing...
 <ComplexType Name="StaffRegistration_DDL_Result"> <Property Type="Int64" Name="ID" Nullable="false" /> <Property Type="String" Name="Groups" Nullable="true" MaxLength="100" /> <Property Type="String" Name="NoOfChild" Nullable="false" MaxLength="1" /> </ComplexType>


how can i achieve all the entites...

Answers (1)

0
Photo of Francis
NA 11.7k 724.2k 9y
Have you debugged the application by keeping breakpoints? If you are using google api for this there may be an update that may affect the expected functionality. Please check that one also.