I am trying to use a stored procedure in the entity framework that returns nothing. The stored procedure is purely for logging.
I added a function (right click -> add -
From EF 4.1, it is possible . Till Ef 4.0 , it is not possible. You can use the following lines for calling sp in ef 4.1
res = ctx.Database.SqlQuery(...your SP call...);
For more clarification , please refer Handle Stored Procedure in Entity Framework