I am new to EF and trying to find a better way to do something.
I have a procedure that returns table details, but also a computed value. I want this to return this information to an object that could contain it, whether it be the original entity or an entity based on the original (so if the original table changes, it will still be displayed). What I would like to avoid is to save 2 objects - 1 for the table and 1 for the results of the stored procedure.
Thank...
source
share