Interview Question
Qus: Difference between LINQ and SQL Stored Procedure?
Answers (2)
2. In LINQ there is no need for additional script because LINQ works under .NET framework using only one DLL whereas in stored procedure we need additional script.
3. Performance wise stored procedure is faster than LINQ because it executes on server only.