I have a Linq to Sql .dbml file which auto generates my method signatures for certain stored procedures. eg, I have in SQL spGetEmployees(@Name)
so in my data context I have spGetEmployees(string Name)
.
Now, my underlying sp changed to add an additional parameter: spGetEmployees(@name, @count)
and so I want the function in my DataContext
to change as well. Is there a way to do this without dropping the stored proc from the Linq to Sql class file and re-adding it?