Disadvantages of LINQ over Stored Procedures

Disadvantages of LINQ over Stored Procedures

1. LINQ needs to process the complete query, which might have a performance impact in case of complex queries against stored procedures which only need serialize sproc-name and argument data over the network.
2. LINQ is generic, whereas stored procedures etc can take full advantage of the complete database features.
3. If there has been a change, the assembly needs to be recompiled and redeployed whereas stored procedures are much simpler to update.
4. It’s much easier to restrict access to tables in database using stored procedures and ACL’s than through LINQ.
Overview of VB 2008
Overview of VB 2008 - base class libraries, new functionality added in VB 2008, role of the common intermediate language, benefits of CIL, role of .NET Type Metadata......
VB.NET - Define Shared member of the class
VB.NET - Define Shared member of the class - It is member of the class which can be access without creating instance of the class.....
VB.NET - Visual inheritance in VB.NET
VB.NET - What is visual inheritance in VB.NET? - Visual inheritance allows deriving forms from the base form with common controls.......
Post your comment