Hi everybody! test160106DataSetTableAdapters.
I've stumbled across a funny behaviour of a typed dataset in a new application of mine. Some how the generated code gives me a Invalid Cast Exception.
I've reproduced the behaviour as follows.
I've created a database "test160106", I've created the table "Parent" with two columns (column 1: ID int, column 2: nvarchar name) and a table "Child" with three columns (column 1: ID int, column 2: nvarchar name, column 3: int ParentID). I also added the relation
between ParentID and Parent table.)
I added a new data connection pointing to this database and let it create my datasets.
Now I use the following code that should me give me all child rows belonging to a parent.
foreach (test160106DataSet.ChildRow _childRow in _pta.GetData().FindByID(1).GetChildRows())
{
Console.Write(String.Format("{0}: {1}", _childRow.ID, _childRow.Name));
}
Console.ReadLine();
When executing this code, it gives me an Invalid Cast Exception (Unable to cast object of type 'ParentRow[]' to type 'ChildRow[]'.), which comes from the generated code:[System.Diagnostics.
DebuggerNonUserCodeAttribute()] public ChildRow[] GetChildRows() { return ((ChildRow[])(base.GetChildRows(this.Table.ChildRelations["FK_Child_Parent"])));}
Can anyone reproduce this? If so, is it a bug or am I doing someting I shouldn't be?
Any help appreciated.
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.