I have stored procedures that take a user's username (to log who makes changes to the database) in addition to other information (like name, ID, email, etc.). Within the stored procedure I look up the user's ID and store that in the table.
The issue I am experiencing is that the Entity Table does not match the input of the stored procedure, therefore there is no way to map (or include) the user's username.
Is there a standard way to include non-entity properties in a stored procedure mapping?