LINQ and Storedprocedure
The interview i faced was "What is the difference between LINQ and Stored procedure?".
I don't know whether it is a vague question or proper one. I answered "In Linq there is a support for Closure so you can refer the value of outer parameter inside the anonymous body,you can't do the same with Stored procedure"开发者_Go百科.
Just i am requesting you the proper answer.
A stored procedure is stored in the database while any "LINQ" queries would be in your code. I think that's the biggest difference.
精彩评论