I have a question about an issue for which I have already found a resolution. I am working with the C# 4.0 framework. In the line of code below, _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table is a DataView. The column VT_VENUE_MEETING_ADJUSTMENT.venue_id is of the type System.String.
DataRow[] venueIRs = _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table.Select("venue_id = " + drVenue["venue_id"].ToString());
The value drVenue["venue_id"] will always be an integer value. What I have observed is when drVenue["venue_id"] is an Int32, the code above crashes with the exception “Cannot perform ‘=’ operation on System.String and System.Int32”. However, when drVenue["venue_id"] is an Int64 value, the code does not crash.
I can also reproduce the same behavior by hard-coding values into the .Select():
DataRow[] venueIRs = _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table.Select("venue_id = 1016246895"); <-- Int32 value: crashes
DataRow[] venueIRs = _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table.Select("venue_id = 7000242000002107"); <-- Int64 value: does not crash
My workaround for this is to enclose the value in ticks, which would always ensure a string-to-string comparison under all circumstances...
Table.Select("venue_id = '" + drVenue["venue_id"].ToString() + "'");
However, I'm still trying to determine exactly why there would be a difference here. Is the above behavior by design in C# (an Int64 can be compared to a string, but an Int32 cannot)? Or, should the above code be resulting in a crash regardless of whether I refer to an Int32 or Int64 value in the Select()?