What am I supposed to use when handling a value in C#, which is bigint for an SQL?Server database?
See Question&Answers more detail:osWhat am I supposed to use when handling a value in C#, which is bigint for an SQL?Server database?
See Question&Answers more detail:osThat corresponds to the long (or Int64), a 64-bit integer.
Although if the number from the database happens to be small enough, and you accidentally use an Int32, etc., you'll be fine. But the Int64 will definitely hold it.
And the error you get if you use something smaller and the full size is needed? A stack overflow! Yay!