0

如何做到这一点?

我以为它是这样的:

Map(x => x.PersistedTimeStamp)
    .CustomType<UtcDateTimeType>()
    .Generated.Insert();

......但是,这没有任何作用。

4

1 回答 1

1

Generated.Insert()仅表示“数据库将在插入时生成此值;之后为我检索它”

相反,只需DateTime.UtcNow在构造函数中将属性设置为。

于 2012-08-20T21:49:01.640 回答