DataSet: Enumerator and FindById do not return equal DataRow - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T22:48:40Z http://stackoverflow.com/feeds/question/1043060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043060/dataset-enumerator-and-findbyid-do-not-return-equal-datarow 0 DataSet: Enumerator and FindById do not return equal DataRow Mudu http://stackoverflow.com/users/17713 2009-06-25T10:09:32Z 2009-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#1043155 1 Answer by Rune FS for DataSet: Enumerator and FindById do not return equal DataRow Rune FS http://stackoverflow.com/users/112407 2009-06-25T10:31:41Z 2009-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>