My int 32 id columns are being generated as strings, so the following doesnt compile unless I wrap my ID in quotes:
var item = _webproject.SingleOrDefault(x => x.unique_ID == "16450000");
However, when debugging, this throws an error:
"Object of type 'System.UInt32' cannot be converted to type 'System.String'."
in public static _webproject SingleOrDefault
single=results.ToList()[0];
Hi,
My int 32 id columns are being generated as strings, so the following doesnt compile unless I wrap my ID in quotes:
However, when debugging, this throws an error: "Object of type 'System.UInt32' cannot be converted to type 'System.String'." in public static _webproject SingleOrDefault single=results.ToList()[0];
Ta'
Bob