- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下看似随机发生的异常:
NHibernate.Exceptions.GenericADOException: could not execute query
[ select businesspr0_.BusinessProcessID as col_0_0_, businesspr0_.ProcessNumber as col_1_0_, businesspr1_.Name as col_2_0_, businesspr0_.DateCreated as col_3_0_, actor2_.DisplayName as col_4_0_, usergroup3_.Name as col_5_0_, processele5_.Name as col_6_0_ from BusinessProcess businesspr0_ inner join BusinessProcess businesspr1_ on businesspr0_.DefinitionID=businesspr1_.BusinessProcessID inner join Actor actor2_ on businesspr0_.ActorCreatedID=actor2_.ActorID left outer join UserGroup usergroup3_ on businesspr0_.UserGroupCreatedID=usergroup3_.UserGroupID left outer join Actor usergroup3_1_ on usergroup3_.UserGroupID=usergroup3_1_.ActorID inner join ActiveElement activeelem4_ on businesspr0_.BusinessProcessID=activeelem4_.BusinessProcessID inner join ProcessElement processele5_ on activeelem4_.ProcessElementID=processele5_.ProcessElementID inner join ProcessEmployees processemp6_ on businesspr0_.BusinessProcessID=processemp6_.BusinessProcessID inner join Actor actor7_ on processemp6_.ActorID=actor7_.ActorID inner join UserInGroups users8_ on actor7_.ActorID=users8_.UserGroupID inner join AppUser user9_ on users8_.UserID=user9_.UserID inner join Actor user9_1_ on user9_.UserID=user9_1_.ActorID where businesspr0_.IsDefinition=0 and (businesspr0_.Finished is null) and @p0=user9_.UserID ]
Name:userID - Value:32771
[SQL: select businesspr0_.BusinessProcessID as col_0_0_, businesspr0_.ProcessNumber as col_1_0_, businesspr1_.Name as col_2_0_, businesspr0_.DateCreated as col_3_0_, actor2_.DisplayName as col_4_0_, usergroup3_.Name as col_5_0_, processele5_.Name as col_6_0_ from BusinessProcess businesspr0_ inner join BusinessProcess businesspr1_ on businesspr0_.DefinitionID=businesspr1_.BusinessProcessID inner join Actor actor2_ on businesspr0_.ActorCreatedID=actor2_.ActorID left outer join UserGroup usergroup3_ on businesspr0_.UserGroupCreatedID=usergroup3_.UserGroupID left outer join Actor usergroup3_1_ on usergroup3_.UserGroupID=usergroup3_1_.ActorID inner join ActiveElement activeelem4_ on businesspr0_.BusinessProcessID=activeelem4_.BusinessProcessID inner join ProcessElement processele5_ on activeelem4_.ProcessElementID=processele5_.ProcessElementID inner join ProcessEmployees processemp6_ on businesspr0_.BusinessProcessID=processemp6_.BusinessProcessID inner join Actor actor7_ on processemp6_.ActorID=actor7_.ActorID inner join UserInGroups users8_ on actor7_.ActorID=users8_.UserGroupID inner join AppUser user9_ on users8_.UserID=user9_.UserID inner join Actor user9_1_ on user9_.UserID=user9_1_.ActorID where businesspr0_.IsDefinition=0 and (businesspr0_.Finished is null) and @p0=user9_.UserID]
---> System.IndexOutOfRangeException: col_0_0_
at System.Data.ProviderBase.FieldNameLookup.GetOrdinal(String fieldName)
at System.Data.SqlClient.SqlDataReader.GetOrdinal(String name)
at NHibernate.Driver.NHybridDataReader.GetOrdinal(String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String[] names, ISessionImplementor session, Object owner)
at NHibernate.Hql.Ast.ANTLR.Loader.QueryLoader.GetResultColumnOrRow(Object[] row, IResultTransformer resultTransformer, IDataReader rs, ISessionImplementor session)
at NHibernate.Loader.Loader.GetRowFromResultSet(IDataReader resultSet, ISessionImplementor session, QueryParameters queryParameters, LockMode[] lockModeArray, EntityKey optionalObjectKey, IList hydratedObjects, EntityKey[] keys, Boolean returnProxies)
at NHibernate.Loader.Loader.DoQuery(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies)
at NHibernate.Loader.Loader.DoQueryAndInitializeNonLazyCollections(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies)
at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters)
--- End of inner exception stack trace ---
at DotExe.TiCat.DomainModel.Repository.ProcessModel.BusinessProcessDAO.GetProcessForUserGroups(Int32 userID) in D:\Projects\TiCatRNIDS\DotExe.TiCat4\DotExe.TiCat.DomainModel.Repository\ProcessModel\BusinessProcessDAO.cs:line 98
at DotExe.TiCat4.UseCaseRepository.TicketProcess.TicketQueues.RefreshQueue() in D:\Projects\TiCatRNIDS\DotExe.TiCat4\DotExe.TiCat4\UseCaseRepository\TicketProcess\TicketQueues.cs:line 128
奇怪的部分是这个 System.IndexOutOfRangeException: col_0_0_ 我不知道为什么会这样。如有必要,我可以使用一些 xml 映射更新帖子。
谢谢
更新:
映射和查询抛出 ex:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="DotExe.TiCat.DomainModel" namespace="DotExe.TiCat.DomainModel.Process">
<class name="BusinessProcess" table="BusinessProcess">
<id name="BusinessProcessID">
<generator class="hilo"/>
</id>
<property name = "Name" length="1024" type="string" not-null ="false" />
<property name = "Description" length="5000" type="string" not-null ="false" />
<property name = "ProcessNumber" length="500" type="string" not-null ="false" />
<property name = "CommentOnSolve" length="5000" type="string" not-null ="false" />
<property name="IsDefinition" type="bool"/>
<property name="PlaningTimeToSpend" type="long"/>
<property name="SpendTime" type="long"/>
<property name="DateCreated" type="DateTime" not-null="false"/>
<property name="PlanToStart" type="DateTime" not-null="false"/>
<property name="PlanToFinish" type="DateTime" not-null="false"/>
<property name="Started" type="DateTime" not-null="false"/>
<property name="Finished" type="DateTime" not-null="false"/>
<property name="CustomerRequestCallBack" type="bool" not-null="false"/>
<property name="EscalationTimeLimitInPercents" type="int"/>
<property name="IsEscalated" type="bool"/>
<property name="IsInfinite" type="bool"/>
<many-to-one name="WorkingWeek" class="WorkingWeek" column="WorkingWeekID" not-null="false" lazy="false"/>
<many-to-one name="Priority" class="ProcessPriority" column="PriorityID" not-null="false" lazy="false"/>
<many-to-one name="UserCreated" class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorCreatedID" not-null="false" lazy="false"/>
<many-to-one name="UserSolved" class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorSolvedID" not-null="false" lazy="false"/>
<many-to-one name="GroupCreated" class="DotExe.TiCat.DomainModel.Actors.UserGroup" column="UserGroupCreatedID" not-null="false" lazy="false"/>
<many-to-one name="GroupSolved" class="DotExe.TiCat.DomainModel.Actors.UserGroup" column="UserGroupSolvedID" not-null="false" lazy="false"/>
<many-to-one name="Definition" class="BusinessProcess" column="DefinitionID" cascade="none" />
<set name="Elements" lazy="false" cascade="save-update">
<key column="BusinessProcessID"/>
<one-to-many class="ProcessElement"/>
</set>
<set name="ActiveElements" table="ActiveElement" lazy="false" cascade="save-update">
<key column="BusinessProcessID"/>
<many-to-many class="ProcessElement" column="ProcessElementID"/>
</set>
<set name="ProcessConsumers" table="ProcessConsumers" lazy="false" cascade="save-update">
<key column="BusinessProcessID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<set name="ProcessEmployees" table="ProcessEmployees" lazy="false">
<key column="BusinessProcessID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<set name="ProcessSupervisors" table="ProcessSupervisors" lazy="false">
<key column="BusinessProcessID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<set name="Flows" lazy="false" cascade="save-update">
<key column="BusinessProcessID"/>
<one-to-many class="SequenceFlow"/>
</set>
<set name="PriorityTimeRules" lazy="false" cascade="save-update">
<key column="BusinessProcessID"/>
<one-to-many class="DotExe.TiCat.DomainModel.BusinessRules.PriorityTimeRule"/>
</set>
</class>
<class name="ProcessElement" table="ProcessElement">
<id name="ProcessElementID">
<generator class="hilo"/>
</id>
<property name = "Name" length="1024" type="string" not-null ="true" />
<property name="IsDefinition" type="bool"/>
<property name="IsState" type="bool"/>
<many-to-one class="BusinessProcess" name="MemberOf" lazy="false" cascade="save-update" column="BusinessProcessID"/>
<many-to-one class="ProcessElement" name="Definition" column="DefinitionID"/>
<joined-subclass name="Activity">
<key column="ActivityID"/>
<property name = "Name" length="1024" type="string" not-null ="true" />
<property name = "Description" length="4000" type="string" not-null ="false" />
<set name="States" >
<key column="ActivityID"/>
<one-to-many class="ActivityState"/>
</set>
<joined-subclass name="UserTask" table="UserTask">
<key column="UserTaskID"/>
<property name="PlaningTimeToSpend" type="int"/>
<property name="SpendTime" type="int"/>
<property name="PlanToStart" type="DateTime" not-null="false"/>
<property name="PlanToFinish" type="DateTime" not-null="false"/>
<property name="Started" type="DateTime" not-null="false"/>
<property name="Finished" type="DateTime" not-null="false"/>
<set name="Comments">
<key column="UserTaskID"/>
<one-to-many class="TaskComment"/>
</set>
<set name="UserTaskEmployees">
<key column="UserTaskID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<set name="UserTaskSupervisors">
<key column="UserTaskID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<set name="Priorities">
<key column="UserTaskID"/>
<one-to-many class="UserTaskPriority"/>
</set>
<set name="AssignmentRules">
<key column="UserTaskID"/>
<one-to-many class="DotExe.TiCat.DomainModel.BusinessRules.AssignmentRule"/>
</set>
<many-to-one class="DotExe.TiCat.DomainModel.UseCase.ClientApplicationConfig" name="Application" column="ApplicationConfigID"/>
<many-to-one class="UserTaskPriority" name="TaskPriority" column="TaskPriorityID"/>
</joined-subclass>
<joined-subclass name="SendTask">
<key column="SendTaskID"></key>
<many-to-one name="EmailAccount" class="DotExe.TiCat.DomainModel.Config.EmailAccount" column="EmailAccountID" lazy="false"></many-to-one>
<many-to-one name="Template" class="DotExe.TiCat.DomainModel.Templates.Template" column="TemplateID" lazy="false"></many-to-one>
<set name="Actors" lazy="false">
<key column="SendTaskID"></key>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"></many-to-many>
</set>
<set name="EmailMessages">
<key column="SendTaskID"></key>
<one-to-many class="DotExe.TiCat.DomainModel.Email.EmailMessage"/>
</set>
</joined-subclass>
</joined-subclass>
<joined-subclass name="Gateway">
<key column="GatewayID"/>
<joined-subclass name="ExclusiveGateway">
<key column="ExclusiveGatewayID"/>
</joined-subclass>
</joined-subclass>
<joined-subclass name="Event">
<key column="EventID"></key>
<property name="ExecutionTime" type="DateTime" not-null="false"></property>
<joined-subclass name="StartEvent">
<key column="StartEventID"></key>
</joined-subclass>
<joined-subclass name="EndEvent">
<key column="EntEventID"></key>
</joined-subclass>
</joined-subclass>
</class>
<class name="ActivityState" table="ActivityState">
<id name="ActivityStateID">
<generator class="hilo"/>
</id>
<property name = "Name" length="1024" type="string" not-null ="true" />
<property name = "Description" length="4000" type="string" not-null ="false" />
<many-to-one name="StateOf" class="Activity" column="ActivityID"/>
<property name="IsEndState" type="bool"/>
<property name="IsStartState" type="bool"/>
<property name="IsPauseState" type="bool"/>
<property name="IsProcessSerializationState" type="bool"/>
</class>
<class name="SequenceFlow" table ="SequenceFlow">
<id name="SequenceFlowID">
<generator class="hilo"/>
</id>
<many-to-one class="ProcessElement" name="Source" column="SourceID" lazy="false" cascade="save-update"/>
<many-to-one class="ProcessElement" name="Target" column="TargetID" lazy="false" cascade="save-update"/>
<many-to-one name="Process" class="BusinessProcess" column="BusinessProcessID" cascade="save-update"/>
</class>
<class name="UserTaskPriority" table ="UserTaskPriority">
<id name="UserTaskPriorityID">
<generator class="hilo"/>
</id>
<property name = "Name" length="1024" type="string" not-null ="true" />
</class>
<class name="TaskComment" table ="TaskComment">
<id name="TaskCommentID">
<generator class="hilo"/>
</id>
<property name = "Comment" length="4000" type="string" not-null ="true" />
<many-to-one name="Task" class="ProcessElement" column="UserTaskID"/>
<many-to-one name="Actor" class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
<many-to-one name="Process" class="BusinessProcess" column="BusinessProcessID"/>
<many-to-one name="Group" class="DotExe.TiCat.DomainModel.Actors.UserGroup" column="UserGroupID"/>
<property name="CommentTime" type="DateTime" not-null="false" />
</class>
<class name="TransitionLog">
<id name="TransitionLogID">
<generator class="hilo"/>
</id>
<property name="LogDate" type="DateTime"/>
<property name="TaskStarted" type="DateTime" not-null ="false" />
<property name="TaskEnded" type="DateTime" not-null ="false" />
<property name="TimeSpend" type="int" not-null ="false" />
<set name="SendToActors" table="SendToActorLog" lazy="false">
<key column="TransitionLogID"/>
<many-to-many class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID"/>
</set>
<many-to-one name="Actor" class="DotExe.TiCat.DomainModel.Actors.Actor" column="ActorID" lazy="false"/>
<many-to-one name="Group" class="DotExe.TiCat.DomainModel.Actors.UserGroup" column="UserGroupID"/>
<many-to-one name="FromElement" class="ProcessElement" column="FromElementID" lazy="false"/>
<many-to-one name="ToElement" class="ProcessElement" column="ToElementID"/>
<many-to-one name="Process" class="BusinessProcess" column="BusinessProcessID"/>
<many-to-one name="LogType" class="LogType" column="LogTypeID" lazy="false"/>
<property name="Comment" length="4000" type="string" not-null ="false" />
</class>
<class name="LogType">
<id name="LogTypeID"/>
<property name = "Name" length="1024" type="string" not-null ="false" />
<property name = "DisplayName" length="1024" type="string" not-null ="false" />
</class>
<class name="ProcessPriority">
<id name="ProcessPriorityID"/>
<property name = "Name" length="1024" type="string" not-null ="false" />
<property name = "DisplayName" length="1024" type="string" not-null ="false" />
</class>
<class name="WorkingWeek">
<id name="WorkingWeekID">
<generator class="hilo"/>
</id>
<property name="MondayFrom" type="DateTime" not-null="true"/>
<property name="MondayTo" type="DateTime" not-null="true"/>
<property name="TuesdayFrom" type="DateTime" not-null="true"/>
<property name="TuesdayTo" type="DateTime" not-null="true"/>
<property name="WednesdayFrom" type="DateTime" not-null="true"/>
<property name="WednesdayTo" type="DateTime" not-null="true"/>
<property name="ThursdayFrom" type="DateTime" not-null="true"/>
<property name="ThursdayTo" type="DateTime" not-null="true"/>
<property name="FridayFrom" type="DateTime" not-null="true"/>
<property name="FridayTo" type="DateTime" not-null="true"/>
<property name="SaturdayFrom" type="DateTime" not-null="true"/>
<property name="SaturdayTo" type="DateTime" not-null="true"/>
<property name="SundayFrom" type="DateTime" not-null="true"/>
<property name="SundayTo" type="DateTime" not-null="true"/>
<property name="Is24x7" type="bool"/>
<property name="Name" type="string" length="256" not-null="true"/>
<!--<set name="BusinessProcesses" cascade="none" lazy="false">
<key column="WorkingWeekID"/>
<one-to-many class="BusinessProcess"/>
</set>-->
</class>
</hibernate-mapping>
和查询:
IList<object[]> result =
session.CreateQuery(" select bp.BusinessProcessID, bp.ProcessNumber, def.Name as Definition," +
" bp.DateCreated, actor.DisplayName as UserCreated," +
" group.Name as GroupCreated, task.Name as ActiveTask " +
" from BusinessProcess bp " +
" join bp.Definition as def " +
" join bp.UserCreated as actor " +
" left join bp.GroupCreated as group " +
" join bp.ActiveElements as task" +
" join bp.ProcessEmployees as res" +
" join res.Users as users " +
" where bp.IsDefinition = false " +
" and bp.Finished is null" +
" and :userID = users.ActorID").SetParameter("userID", userID).List<object[]>();
最佳答案
当我试图将一个空值映射到一个不可为空的属性(即一个整数)时,我遇到了这个错误。确保要么确保 sql 值不可为 null,要么只是使 c# 属性可为 null (public virtual int?NumberOfPoints { get; set; }
)
关于c# - NHibernate - NHibernate.Exceptions.GenericADOException : could not execute query 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8601783/
有时我一直在努力理解为什么在尝试创建航路点任务时任务管理器会收到错误“无法执行执行”。我附上了我正在使用的工作流程,如果您能看一下,我将不胜感激。 1.Initialize FlightControl
我正在 Python 中使用 SQLAlchemy 核心,并且我已多次阅读文档,但仍然需要有关 engine.execute() 的说明。与 connection.execute() . 据我了解,e
在我的 Zend 框架项目中,我想检查是否设置了 cookie。如果是这种情况,我想使用 cookie 内容登录用户。 由于我必须在调用任何 Controller 之前执行此自动登录,因此我尝试将其放
我正在尝试为我创建的 2 个选择语句的 UNION 创建一个 View 。 UNION 在单独执行时工作正常 但问题是当我将它作为 View 执行时,只有 UNION 的第一部分被执行。 我正在使用的
下面我写了一个简单的例子来演示我遇到的问题。执行代码后,我得到一个 cygwin 异常 7200。我环顾四周并尝试了一些事情,但没有解决。有人可以解释为什么我得到它,我该如何解决?感谢您抽出宝贵时间,
从池中获取连接然后在连接上调用 execute 而不是直接在池对象上调用 execute 的用例是什么? 在 Pool 的文档中类,显示此示例: con = await pool.acquire()
我正在尝试通过 SQL 将变量中的 2 个值插入表中,代码完成时没有错误,但条目未显示在表中。 我尝试在即时窗口中执行代码,但这给了我一个关于括号的错误(我真的不知道如何在那里正确输入提示),所以我将
我对广播接收器有点困惑。我有一个广播接收器,它在 TIME_SET 和 TIMEZONE_CHANGED 操作时触发(代码在下面给出)。我想知道的是,当 TIME_SET 和 TIMEZONE_CHA
我必须与需要随每个请求发送访问 token 的外部服务集成。访问 token 的到期时间很短(只有几个小时)。我决定以乐观的方式使用访问 token 。我将使用当前 token 调用外部服务。如果出现
如果我在 swift 中运行以下代码,步骤 1.、2.、3. 和 4. 是否始终按此顺序执行(它们应该如此),或者如果循环存在异步执行的风险,排序等,花费的时间比预期的要长? // 1. fo
我在我的 C++ 应用程序中看到访问冲突错误。在发生违规并使用 !analyze 时将 windbg 附加到进程时,我发现访问违规是由于试图执行不可执行的地址。我知道导致此问题的正在执行的地址。什么可
在使用 Ubuntu 大约一年之后,这对我来说是第一次。 我接手了一个跟踪维修的汽车服务项目。我可以看到每个文件的完整源代码,但是有一个没有扩展名的文件,但在 Ubuntu 中,属性显示为可执行文件(
什么是 LinqPad“自动跟踪执行”和“跳转到执行点”?如何使用它们,如果你能给出一个详细的例子将不胜感激。 最佳答案 这不是一个详细的示例,但它说明了该功能。如果你有一个像 "1".Dump()
我使用 Q.js 来实现 promise 。在下面的代码中,每个方法都会进行 ajax 调用,然后返回一个 Promise。一切都按预期进行,每个方法在下一个方法开始之前执行并完成: function
我有一个类,它实现了 Runnable接口(interface),并且是一个一旦启动就会无限期运行的任务(长时间运行的线程)。 public class LongRunningTask impleme
PDOStatement::execute() [pdostatement.execute]: SQLSTATE[HY093]: 无效的参数数量:绑定(bind)变量的数量与标记数量不匹配 我收到此错
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
想要为执行的每个 linux 命令添加 aspect:executionTime 有什么方法可以添加默认方面环境,以便必须为执行的 linux 命令获取 executionTime 最佳答案 根据 m
我正在尝试安装一个名为 MFOC 的工具.我按照其网站中提到的说明进行操作,如下所示: ebrahim@ubuntu:~$ cd Desktop/mfoc-master/ ebrahim@ubuntu
我刚开始使用 numba 来提高我的程序的性能。我已经减少了我将要呈现的情况 import numba as nb import numpy as np from time import time d
我是一名优秀的程序员,十分优秀!