不允许从数据类型日期时间到时间戳的隐式转换

时间:2018-05-11 11:31:05

标签: sql-server datetime

错误消息:

  

不允许从数据类型日期时间到时间戳的隐式转换

C#dateTime定义:

DateTime dateTime = DateTime.UtcNow;

使用DateTime参数(来自C#)调用SQL Server存储过程:

   sqlCommand.CommandText = "dbo.StoredPrcoName";
   sqlCommand.CommandType = CommandType.StoredProcedure;
   sqlCommand.Parameters.Clear();
   sqlCommand.Parameters.AddWithValue("@BirthDate", dateTime);

我进入SQL Server:

@BirthDate datetime  = NULL, 

我在这里缺少什么?

0 个答案:

没有答案