将 DateTimeOffset 值从 SQL 2008 获取到 C#
我有一个 SQL 2008 表,其中有一个名为 RecDate、类型为 DateTimeOffset
的字段。
对于给定的记录,值为 '2010-04-01 17:19:23.62 -05:00'
在 C# 中,我创建一个 DataTable 并用我需要获取毫秒的结果填充它
SELECT RecDate FROM MyTable.
,但如果我执行以下操作毫秒始终为 0:
DateTimeOffset dto = DateTimeOffset.Parse(dt.Rows[0][0].ToString());
将 RecDate 列中的值获取到 DTO 变量的正确方法是什么?
I have a SQL 2008 table with a field called RecDate of type DateTimeOffset
.
For a given record the value is '2010-04-01 17:19:23.62 -05:00'
In C# I create a DataTable and fill it with the results of
SELECT RecDate FROM MyTable.
I need to get the milliseconds, but if I do the following the milliseconds are always 0:
DateTimeOffset dto = DateTimeOffset.Parse(dt.Rows[0][0].ToString());
What is the proper way to get the value in the RecDate column into the DTO variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许转换为
ToString()
会删除微秒信息。根据 MSDN,SQL Server 数据类型
datetimeoffset 与 C# 的
DateTimeOffset
匹配。因此,将datetimeoffset
列转换为DateTimeOffset
应该是安全的。例如:
Perhaps the cast to
ToString()
removes the microsecond info.According to MSDN, the SQL Server data type
datetimeoffset
matches C#'sDateTimeOffset
. So it should be safe to cast adatetimeoffset
column toDateTimeOffset
.For example: