⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isqlloadable.cs

📁 NHibernate NET开发者所需的
💻 CS
字号:
using NHibernate.Type;

namespace NHibernate.Persister.Entity
{
	/// <summary>
	/// A class persister that supports queries expressed in the platform native SQL dialect.
	/// </summary>
	public interface ISqlLoadable : ILoadable
	{
		/// <summary>
		/// Get the type
		/// </summary>
		IType Type { get; }

		/// <summary>
		/// Returns the column alias names used to persist/query the numbered property of the class or a subclass (optional operation).
		/// </summary>
		string[] GetSubclassPropertyColumnAliases(string propertyName, string suffix);

		/// <summary> 
		/// Return the column names used to persist/query the named property of the class or a subclass (optional operation).
		/// </summary>
		string[] GetSubclassPropertyColumnNames(string propertyName);

		/// <summary>
		/// All columns to select, when loading.
		/// </summary>
		string SelectFragment(string alias, string suffix);
	}
}

⌨️ 快捷键说明

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