Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Datetime.Now 将日期和时间保存(使用 linq)到 SQL 字段(日期时间数据类型),但秒数没有通过。有谁知道如何安装它?
塔。
DateTime.Now 对我来说效果很好。由于 SQL 服务器存储日期的方式不同,我只有毫秒精度的问题。
您的日期的 SQL 表列是什么类型的?它可以存储秒吗?
由于我最初使用的是 smalldatetime 数据字段,因此在将其更改为 datetime 后,我忘记更新我的数据访问层 (linq)。更新 linq 数据上下文解决了我的问题。谢谢大家。