I'm trying to added stored procedure through Model browser, the SP had a table valued parameter. SP is added with function imports, But it's missing the table valued parameter. SP had 5 parameters including tvp, but i can see only 4 parameter and tvp parameter is missing.
I did googling to find the reason and solution. Everyone is suggesting to use entitie's ExecuteStoreProcedure method. e.g. Entity Framework Stored Procedure Table Value Parameter
But i want to use the function import which is created while we add SP using Model browser, all other SPs works well as they don't have tvp. Note: using EF 6.1.1 and .net 4.5, and VS2013
Quetion: does C# and EF supports importing SP wtih TVP ?