I am at the end of my knowledge and was looking for an answer for an answer, but no luck: /
A week ago, everything worked well.
I did the reverse in the repository, recreated the table, etc ... nothing helped.
When I try to save in my application, I get a SystemInvalidCastException exception:
PersonListDataSet.cs:
partial class P_GroupTableAdapter
{
public int Update(PersonListDataSet.P_GroupDataTable dataTable, string userId)
{
this.Adapter.InsertCommand.Parameters["@userId"].Value = userId;
this.Adapter.DeleteCommand.Parameters["@userId"].Value = userId;
this.Adapter.UpdateCommand.Parameters["@userId"].Value = userId;
return this.Update(dataTable); **<-- Exception occurs here**
}
}
Everything is stuck here because Guid - and I checked the datatable preview with the magnifier tool, which is really a true Guid in the data column - cannot be converted to a string ??? How can this happen?
source
share