我無法配置我的映射文件,以達到預期效果。我的模型具有可以爲空的DateTime屬性。這些是我的映射。FluentNHibernate:驗證映射
...
Map(e => e.NullableDateTimeProperty).Nullable();
...
這些都是驗證映射的測試。
...
.CheckProperty(e => e.NullableDateTimeProperty, (DateTime?)DateTime.Now)
.VerifyMappings();
但是當我運行這個測試,一個ApplicationException的是拋出:
System.ApplicationException : For property 'NullableDateTimeProperty' expected type 'System.DateTime' but got 'System.Nullable`1[[System.DateTime]]'
您是否曾經爲此找到答案?我有完全相同的問題,現在並不能找到關於谷歌... – Frito