Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Arrotondare .NET DateTime in millisecondi, in modo che possa contenere millisecondi di SQL Server

Ecco cosa vuoi:

using System.Data.SqlTypes; // from System.Data.dll

public static DateTime RoundToSqlDateTime(DateTime date)
{
  return new SqlDateTime(date).Value;
}