DataSet: Enumerator and FindById do not return equal DataRow - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T22:48:40Zhttp://stackoverflow.com/feeds/question/1043060http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043060/dataset-enumerator-and-findbyid-do-not-return-equal-datarow0DataSet: Enumerator and FindById do not return equal DataRowMuduhttp://stackoverflow.com/users/177132009-06-25T10:09:32Z2009-06-25T10:31:41Z
<p>Hi folks</p>
<p>Today's problem in my code is kind of strange, and I could not reproduce it yet. I'm working with a typed dataset (created with the designer) and I'm looping over all rows in a datatable.</p>
<p>Sometimes (!), when finding via primary key, the returned row is not equal to the one from the enumerator. This is some code I wrote to reproduce the issue:</p>
<pre><code>foreach(DataSet1.DataTable1Row dr in ds.DataTable1)
{
if(ds.DataTable1.FindById(dr.Id) != dr)
Console.Write(dr.Id);
}
</code></pre>
<p>No line will be written to the console, because FindById always returns the same row, which is really logical. In my project's code, with a similar dataset with a few String columns, in about 3% of the rows (always the same rows!) it doesn't, and one of the String fields is just empty:</p>
<pre><code>ds.DataTable1.FindById(dr.Id) != dr // returns false, for whatever reason
</code></pre>
<p>The primary key is the only primary key field, and therefor FindById is a generated method. Does anybody know a little hint or did experience the same problem before? I'm afraid it's a very very special case I made that enables this bug or feature. :)</p>
<p>I thought about the possibility of this being produced by the cast done by the enumeration. The enumerator does work with the <code>DataRow</code> base type of the generated typed rows. But I didn't find something wrong there...</p>
<p>Cheers
Matthias</p>
http://stackoverflow.com/questions/1043060/dataset-enumerator-and-findbyid-do-not-return-equal-datarow/1043155#10431551Answer by Rune FS for DataSet: Enumerator and FindById do not return equal DataRowRune FShttp://stackoverflow.com/users/1124072009-06-25T10:31:41Z2009-06-25T10:31:41Z<p>WHat's the type of you primary key? the DataSet has a subtle bug for comparing Guids (and possibly other values). The Guid error only has to do with certain Guid values and usually works well.</p>
<p>note: When I say have a bug, I mean I know that a bug report has been accepted but I don't know if it's been fix as well</p>