nhibernate,存储过程

发布于 2024-11-02 12:12:12 字数 82 浏览 1 评论 0原文

我们可以调用一个 STOREDPROC 来将数据插入到 db 中,而 NHIBERNATE 没有返回值吗?如果是的话,任何人都可以帮我提供一个小样本。

Can we call a STOREDPROC which inserts data into db which has no return value from NHIBERNATE? If so can any one please help me out with a small sample.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

执手闯天涯 2024-11-09 12:12:12

我不知道如果您在 XML 中定义查询是否有效,但您可以简单地创建一个 ISQLQuery 并对其调用 ExecuteUpdate()

I don't know if it works if you define the query in XML, but you can simply create an ISQLQuery and call ExecuteUpdate() on it.

秋叶绚丽 2024-11-09 12:12:12

使用ADO.NET,
-从 NHibernate 会话获取 Connection 对象,
-创建一个Db命令
- 在 Dbcommand 文本中设置您的过程
-运行命令

注意:NHibernate可能支持存储过程,但它是一个复杂的过程,请参阅此链接,因此选择最适合您的情况的 ADO.NET。

Use ADO.NET,
-Get Connection object from NHibernate session,
-Create a Dbcommand
-Set your procedure in Dbcommand text
-Run the command

Note: NHibernate might supprot stored procs but its a complicated process refer to this link, so opt ADO.NET which is optimum in your scenario.

汹涌人海 2024-11-09 12:12:12

这是一种方法:-

在您的映射文件中:-

<sql-query name="UpdateMeetingsSentFromTeamLeader">
  <![CDATA[exec uspUpdateMeetingsSentFromTeamLeader :MeetingId]]>
</sql-query>

您的代码是:-

public void UpdateMeetingsSentFromTeamLeader(int meetingId)
{
    Session
    .GetNamedQuery("UpdateMeetingsSentFromTeamLeader")
    .SetInt32("MeetingId", meetingId)
    .ExecuteUpdate();
}

This is one way:-

In your mappings file:-

<sql-query name="UpdateMeetingsSentFromTeamLeader">
  <![CDATA[exec uspUpdateMeetingsSentFromTeamLeader :MeetingId]]>
</sql-query>

and your code is:-

public void UpdateMeetingsSentFromTeamLeader(int meetingId)
{
    Session
    .GetNamedQuery("UpdateMeetingsSentFromTeamLeader")
    .SetInt32("MeetingId", meetingId)
    .ExecuteUpdate();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文