zoukankan      html  css  js  c++  java
  • Nhibernate compositeid class must override Equals()解决办法

    概述:

       当使用Nhibernate查询表中的数据时,如果表中存在复合主键,如果没有在相应的实体类中重写Equals(),那么将会出现"Could not compile the mapping document: TestCleanSnow.JkptGlxtUser.hbm.xml".当跟踪出错的内部信息的时候会发现,内部异常为"composite-id class must override Equals(): TestCleanSnow.JkptGlxtUserId"

    解决办法:

        在JkptGlxtUserId.cs这个实体类中重写Equals()方法如下:

     public override bool Equals(object obj)
            {           
                
    if (obj is JkptGlxtUser)
                {
                    JkptGlxtUser gu 
    = obj as JkptGlxtUser;
                    
    if (this.Operatorid == gu.Id.Operatorid
                         
    && this.Orgid == gu.Id.Orgid)
                    {
                        
    return true;
                    }
                    
    else return false;
                }
                
    return false;        
            }

    再次执行调用语句,发现还出现"Could not compile the mapping document: TestCleanSnow.JkptGlxtUser.hbm.xml".这个错误,但是跟踪内部异常为:InnerException = {"composite-id class must override GetHashCode(): TestCleanSnow.JkptGlxtUserId"}

    到此很明显,在遇到复合主键的情况下,应该还得在JkptGlxtUserId.cs中重写GetHashCode(),代码如下:

     public override int GetHashCode()
            {
              
    return  Orgid.GetHashCode();
              
            }

    再次运行调用程序,OK了.

  • 相关阅读:
    b_lc_数组中最大数对和的最小值(排序+思维 | 进阶:第k)
    b_lc_使用服务器处理任务(模拟 + 堆)
    b_lc_插入后的最大值(贪心+区分正负数)
    b_lc_蓄水(反向思维:枚举取水次数)
    万能JDBC工具类【DBUtil 】
    Eureka服务注册中心
    springboot dubbo+zookeeper
    Thymleaf引擎模板
    多环境切换 & JSR303数据校验
    yaml配置注入
  • 原文地址:https://www.cnblogs.com/abcdwxc/p/1397360.html
Copyright © 2011-2022 走看看