I\'m trying to develop a model object to hold a Sql Server row, and I understand perfectly how to do this except for the T-Sql/SqlServer timestamp. The table is defined as:
According to this post
you'll have to cast it to a byte array.
byte[] dt = dataReader["dt"] as byte[];