I am running into a problem when I try to access a column from my table.
Example.. I have tblCustomers. I have column password, varchar(20).
In the code when I try to access it Cust.s_Password = \"whatever\" I get an exception. Column 'Password' does not belong to table tblCustomers.
Here is the call stack:
[ArgumentException: Column 'Password' does not belong to table tblCustomers.]
System.Data.DataRow.set_Item(String columnName, Object value)
NCI.EasyObjects.EasyObject.SetColumnNull(String fieldName)
NDIWeb._tblCustomers.set_s_Password(String Value)
I do have the column in the concrete class and the business class.
Any Ideas? Thanks
