0

My client is using Insight.Database for SQL Server ORM, using C# as the client. I have encountered a SQL Server 2017 database datatype 'Timestamp' and I am unsure what the C# entity type should be? I have downloaded the code for the Insight.Database and have globally searched for Timestamp, but results are empty.

Any ideas what datatype in C# would best represent a SQL Server Timestamp datatype?

DrHouseofSQL
  • 550
  • 5
  • 16
barrypicker
  • 9,740
  • 11
  • 65
  • 79

1 Answers1

1

It would be a byte array as that's what you'd use for varbinary.

https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/sql-server-data-type-mappings

Xedni
  • 3,662
  • 2
  • 16
  • 27