I want to use Linq to SQL for db communications. I have read many a page mentioning Linq is slow, but I like its being rapid development technique.
Please guide me using Linq to SQL with stored procedure bring any advantage in term of performance ?
Thanks
I’d recommend using stored procedures when accessing the database via LINQ-To-SQL or EF for better performance.
Using plain LINQ, which would generate SQL queries can be quite inefficient when it comes to any moderately complex query.