I have a scaffolded C# site showing a table in one database, but I would like to expose an associated field from a table in another database.
There is a stored procedure in the current database that retrieves items from the secondary table, but how do I encapsulate this data and use it?
I have added the stored procedure to the current model, but I don't see a way of making use of it.
I have looked into Complex Types, thinking that this may be the route to take, but I can't seem to find the documentation I'm looking for.