Not sure why I'm getting this error. Project is converted from VS 2005, to VS 2008, but remains with 2.0 framework..
Here is the interface with my generic type and constraint....
public interface ITableAdapter<DT> where DT:System.Data.DataTable
{
/// <summary>
/// Must be called immediately after instantiation in order to pass objects to TransactionHelper
/// </summary>
void InitializeTransactionHelper();
int Fill(DT pDataTable);
DT GetData();
int Update(System.Data.DataRow[] dataRow
Here is the data table as defined by the designer....
/// <summary>
///Represents the strongly named DataTable class.
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[global::System.Serializable()]
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class TGSP_STORAGEPOOLDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
private global::System.Data.DataColumn columnSTORAGEPOOLID;
private global::System.Data.DataColumn columnPOOLCODE;
private global::System.Data.DataColumn columnPOOLDESC;
So what broke between 2005 and 2008????
Thanks, R