如何通过 NHibernate 从 oracle 序列获取 NextVal

发布于 2024-10-11 02:32:13 字数 443 浏览 7 评论 0原文

我正在研究 c# .net 4.0 并使用 NHibernate 与 Oracle DB 进行对话。 您可能会认为像这样简单的事情已经在某个地方得到解决,但遗憾的是事实并非如此。 我需要 Oracle 序列中的 NextVal。 我不需要将其作为 ID 或主键的一部分插入数据库。 我只需要在 c# 端使用下一个 val 。

有人可以帮助我使用 xml 映射和 C# 文件(或链接)来实现此目的。

谢谢。

像这样的东西

int NextValueOfSequence = GetNextValueofSequence();

public int GetNextValueOfSequence()
{

// Access NHibernate to return the next value of the sequence.

}

I am working on c# .net 4.0 and using NHibernate to talk with an Oracle DB.
You would think something as simple as this is already addressed somewhere but sadly its not.
I need the NextVal from an Oracle sequence.
I do not need to insert it a database as part of an Id or Primary key.
I just need to use the next val on the c# side.

Can somebody help me out with xml mapping and C# file(or a link) to achieve this.

Thanks.

Something like

int NextValueOfSequence = GetNextValueofSequence();

public int GetNextValueOfSequence()
{

// Access NHibernate to return the next value of the sequence.

}

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

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

发布评论

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

评论(4

堇年纸鸢 2024-10-18 02:32:13

映射:

  <sql-query name="GetSequence" read-only="true">
    <return-scalar type="Int64"/>
    <![CDATA[
    SELECT SeqName.NEXTVAL from DUAL;
    ]]>
  </sql-query>

代码:

Int64 nextValue = session.GetNamedQuery("GetSequence").UniqueResult<System.Int64>();

Mapping:

  <sql-query name="GetSequence" read-only="true">
    <return-scalar type="Int64"/>
    <![CDATA[
    SELECT SeqName.NEXTVAL from DUAL;
    ]]>
  </sql-query>

Code:

Int64 nextValue = session.GetNamedQuery("GetSequence").UniqueResult<System.Int64>();
安静被遗忘 2024-10-18 02:32:13

这也能达到目的。

 <your session variable>.CreateSQLQuery("select <your sequence>.NEXTVAL from dual").UniqueResult<Int64>();

This also does the trick.

 <your session variable>.CreateSQLQuery("select <your sequence>.NEXTVAL from dual").UniqueResult<Int64>();
橙味迷妹 2024-10-18 02:32:13

对于 NH4,我使用这种与数据库无关的 ISession 扩展方法(显然数据库必须支持序列)

public static T GetSequenceNextValue<T>(this ISession session, string sequenceName) where T : struct
{
    var dialect = session.GetSessionImplementation().Factory.Dialect;
    var sqlQuery = dialect.GetSequenceNextValString(sequenceName);
    return session.CreateSQLQuery(sqlQuery).UniqueResult<T>();
}

With NH4 I use this DB agnostic ISession extension method (obviously DB must support sequences)

public static T GetSequenceNextValue<T>(this ISession session, string sequenceName) where T : struct
{
    var dialect = session.GetSessionImplementation().Factory.Dialect;
    var sqlQuery = dialect.GetSequenceNextValString(sequenceName);
    return session.CreateSQLQuery(sqlQuery).UniqueResult<T>();
}
生生不灭 2024-10-18 02:32:13

@Petr Kozelek 给出的映射有一个小修正

<sql-query name="GetSequence" read-only="true">
    <return-scalar column="NextNo" type="Int64"/>
    <![CDATA[
        SELECT SeqName.NEXTVAL as NextNo from DUAL
    ]]>
</sql-query>

There is a small correction in the mapping given by @Petr Kozelek

<sql-query name="GetSequence" read-only="true">
    <return-scalar column="NextNo" type="Int64"/>
    <![CDATA[
        SELECT SeqName.NEXTVAL as NextNo from DUAL
    ]]>
</sql-query>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文