Disadvantages of LINQ over Stored Procedures1. 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 2008Overview 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......