ActiveRecord/NHibernate 日期时间问题

发布于 2024-09-14 11:42:25 字数 896 浏览 6 评论 0原文

我在 PostgreSQL 8.4 项目中使用 ActiveRecord/NHibernate 进行 ORM 映射。 我有以下问题:

对于类映射

 [ActiveRecord(Schema = "public", Table = "test_bean")]
 public class TestBean
 {
  [PrimaryKey(SequenceName = "test_bean_id_seq", Generator = PrimaryKeyType.Sequence)]
  public int ID { get; set; }

  [Castle.ActiveRecord.Property("time")]
  public DateTime Time { get; set; }
 }

和 SQL DDL,

CREATE TABLE test_bean
(
  id serial NOT NULL,
  time timestamp without time zone NOT NULL,
  CONSTRAINT test_bean_pk PRIMARY KEY (id)
)

当我在 DB ActiveRecord/NHibernate 中保存对象时,将截断/忽略 DateTime 字段的毫秒部分。我做了一些研究,发现了这个 post 但我更喜欢不需要编写自定义类型的解决方案。

I'm using ActiveRecord/NHibernate for ORM mapping in my project with PostgreSQL 8.4.
I have following issue

For class mapping

 [ActiveRecord(Schema = "public", Table = "test_bean")]
 public class TestBean
 {
  [PrimaryKey(SequenceName = "test_bean_id_seq", Generator = PrimaryKeyType.Sequence)]
  public int ID { get; set; }

  [Castle.ActiveRecord.Property("time")]
  public DateTime Time { get; set; }
 }

and SQL DDL

CREATE TABLE test_bean
(
  id serial NOT NULL,
  time timestamp without time zone NOT NULL,
  CONSTRAINT test_bean_pk PRIMARY KEY (id)
)

When I save objects in DB ActiveRecord/NHibernate will truncate/ignore milliseconds component of DateTime field. I have made some research and found this post but I would prefer solution that doesn't require writing custom type.

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

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

发布评论

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

评论(1

穿透光 2024-09-21 11:42:25

使用 Timestamp NHibernate 类型 (类似问题文档)

[Property(ColumnType = "Timestamp")]
DateTime Time {get;set;}

Use a Timestamp NHibernate type (similar question, docs)

[Property(ColumnType = "Timestamp")]
DateTime Time {get;set;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文