通过 LINQ 插入日期时间

发布于 2024-10-31 14:25:30 字数 172 浏览 1 评论 0原文

我的表中有一个数据类型为“时间戳”的列。现在我通过 LINQ2SQL 插入一行。现在我应该在这里写什么:

Entity_Product_Point ev = new Entity_Product_Point();
ev.DateCreated = ???

谢谢!

I have a column in my table which has a DataType of 'timestamp'. Now I am inserting a row through LINQ2SQL. Now what should I write here:

Entity_Product_Point ev = new Entity_Product_Point();
ev.DateCreated = ???

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只等公子 2024-11-07 14:25:30

您确定要 时间戳?它与日期无关...如果您想存储“DateCreated”,我想您可能想使用 DateTime 或只是 Date 数据类型MSSQL。如果这就是您真正想要的,那么您可以传入 DateTime.Now 作为值。

Are you SURE you wanted timestamp? It has nothing to do with dates... If you'd like to store "DateCreated", I think you probably want to use either a DateTime or just Date datatype in MSSQL. If that's what you really intended, then you can pass in DateTime.Now for a value.

∞觅青森が 2024-11-07 14:25:30

相应的类型是 byte[],但 SQL Server 在内部使用此类型进行行版本控制,并由 ORM 进行乐观锁定。您永远不应该(不能)手动为时间戳列写出值。

有关哪种类型对应什么的更完整列表,请查看此问题

Well the corresponding type would be byte[], but this type is used internally by SQL Server for row versioning—and by ORMs for optimistic locking. You should never (can't) write a value out for a timestamp column manually.

For a more complete listing of which type correspond to what, check out this question

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文