I am trying to pass table valued parameters through Entity Framework. I know that when I imported the stored procedure in Entity Framework it gave me the warning that
"Warning 1 Error 6005: The function has a parameter that has a data type 'table type' which is currently not supported for the target Entity Framework version. The function was excluded."
But still the stored procedure was imported and it worked fine. I did this in VS2013 and Entity Framework 5.0. Now I am trying to do the same in Team Foundation Server in VS2012. It shows me similar warning with the only difference that like
The function has a parameter that has a data type 'table type' which is currently not supported for the target .NET Framework version. The function was excluded.
and this time that particular stored procedure was not imported and is not listed. Can anyone explain to me why this is happening and how I can work around it??