Introduction We have decided to ban the use of TableAdapters on our project for the time being. This is because there is no way that we can see of doing centralized connection management using them. Every TableAdapter is capable of creating its own new Connection object. There’s no easy way of overriding that so that … Continue reading Reasons Not to Use TableAdapters in .NET 2.0
Category: table adapter
Problems with Table Adapters in .NET 2.0
There is now second article on the problems with table adapters in .NET. Introduction In Visual Studio 2005 Microsoft have effectively deprecated the use of the separate DataAdapter components (OleDbDataAdapter, SQLDataAdapter). They have replaced them with TableAdapters that are code-generated with the DataSet itself, in the same code module. However, we are struggling with how … Continue reading Problems with Table Adapters in .NET 2.0