isqlloadable.cs
来自「NHibernate NET开发者所需的」· CS 代码 · 共 30 行
CS
30 行
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 + =
减小字号Ctrl + -
显示快捷键?