Hi all,
I was hoping you could show me a sample where the grid has autogenerated columns from a stored procedure returning a set of data that is not aligned with a specific entity.
The stored procedure should join related tables together to show composite data.
For example, SELECT p.name, p.DOB, g.genderName as gender FROM person.p LEFT JOIN gender g ON p.genderId = g.genderId WHERE p.personId = @PersonID
I am using EF Core 5.
Thank you in advance!