identifiergeneratinginsert.cs

来自「NHibernate NET开发者所需的」· CS 代码 · 共 17 行

CS
17
字号
using NHibernate.Engine;
using NHibernate.SqlCommand;

namespace NHibernate.Id.Insert
{
	/// <summary> 
	/// Nothing more than a distinguishing subclass of Insert used to indicate
	/// intent.  
	/// Some subclasses of this also provided some additional
	/// functionality or semantic to the genernated SQL statement string.
	///  </summary>
	public class IdentifierGeneratingInsert : SqlInsertBuilder
	{
		public IdentifierGeneratingInsert(ISessionFactoryImplementor factory) : base(factory) { }
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?