i am using VS2008 3.5 framework.
I'm attempting to use the Entity Framework for data access, but I'm running into a few issues with stored procedures.
I imported this stored procedure into the framework diagram and then made it a function import but i dont see my stored procedure
using (MyEntities context = new MyEntities ())
{
foreach (Basic visit in context.) //<<< i dont see the SP here?
{
}
}
any help?