📄 insertselectidentityinsert.cs
字号:
using NHibernate.Engine;
using NHibernate.SqlCommand;
namespace NHibernate.Id.Insert
{
/// <summary>
/// Specialized IdentifierGeneratingInsert which appends the database
/// specific clause which signifies to return generated IDENTITY values
/// to the end of the insert statement.
/// </summary>
public class InsertSelectIdentityInsert : IdentifierGeneratingInsert
{
public InsertSelectIdentityInsert(ISessionFactoryImplementor factory)
: base(factory)
{
}
public override SqlString ToSqlString()
{
return Dialect.AppendIdentitySelectToInsert(base.ToSqlString());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -