Error with hilo in NHibernate - “could not read a hi value - you need to populate the table”

筅森魡賤 提交于 2019-12-03 07:14:48

NHibernate expects to find a value that stores the current hi value in that table, ie it first runs something like:

current_hi = [SELECT max(next_hi) FROM hibernate_unique_key].

So all you need to do is seed that table with an initial number, ie:

INSERT INTO hibernate_unique_key(next_hi) VALUES (0)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!