gpt4 book ai didi

c# - 验证 datetime fluent nhibernate 映射

转载 作者:太空狗 更新时间:2023-10-29 22:12:46 27 4
gpt4 key购买 nike

我在验证一个非常简单的类的映射时遇到问题。

System.ApplicationException : For property 'Created' expected same element, but got different element with the same value '8/9/2011 12:07:55 AM' of type 'System.DateTime'. Tip: use a CustomEqualityComparer when creating the PersistenceSpecification object.

我已经尝试为 equals 和 get hashcode 方法创建覆盖,但结果是相同的错误。我深入研究了用于持久性规范测试的自定义相等比较器,并再次遇到了同样的错误。也许我应该在早上用一双全新的眼睛看一看这个,但我觉得我缺少一些非常基本的东西。

谢谢大家。

public class Blah
{
public int Id { get; set; }
public DateTime Created { get; set; }
public string Description { get; set; }
}

[Test]
public void Can_Correctly_Map_Blah()
{
new PersistenceSpecification<Blah>(Session)
.CheckProperty(c => c.Id, 1)
.CheckProperty(c => c.Description, "Big Description")
.CheckProperty(c => c.Created, System.DateTime.Now)
.VerifyTheMappings();
}

最佳答案

比较日期时间时必须小心,因为它们可能看起来相同,但它们可能会小到刻度(100 纳秒)。它可能失败了,因为 sql server 没有准确地存储日期时间。

您需要使用自定义相等比较器,以便您可能只比较年、月、日、小时、分钟和秒。

也看看这篇文章: Why datetime cannot compare?

关于c# - 验证 datetime fluent nhibernate 映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6992106/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com