Hi;
dsrm_usersTableAdapters.rm_usersIPTableAdapter _tuser = new dsrm_usersTableAdapters.rm_usersIPTableAdapter();
dsrm_users _dsuser = new dsrm_users();
_dsuser.EnforceConstraints = false;
dsrm_users.rm_usersIPDataTable _muser = _dsuser.rm_usersIP;
_tuser.FillBy(_muser, _IP);
it is very good works;
However, when I use ObjectDataSource and connect to grid view using GetData() method, it gives an error;
Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints Error;
I go to the Dataset and I set EnforceConstraints=false in Property Window , and I try agin its give again same erorr. So EnforceConstraints=false does not work with GetDATA();
So what can I do now? How can I use ObjectDataSource using GetData() without this error.