table.format
来自「客户关系管理系统ASP.NET+VB.NET编程完整程序!」· FORMAT 代码 · 共 55 行
FORMAT
55 行
/// <summary>
/// Internal class - do not instantiate directly. See <see cref="FetchPath"/>.
/// </summary>
public class {0}Relation : DataManagerBase.FetchPathRelation
{
/// <summary>
/// Internal class - do not instantiate directly. See <see cref="FetchPath"/>.
/// </summary>
internal {0}Relation(ArrayList relationList, string alias) { this.RelationList = relationList; this.OrmAlias = alias;}
/// <summary>
/// Fetch all related children and parents
/// </summary>
public {0}Relation All
{
get
{
{2}
{3}
return this;
}
}
/// <summary>
/// Fetch all related children
/// </summary>
public {0}Relation AllChildren
{
get
{
{2}
return this;
}
}
/// <summary>
/// Fetch all related parents
/// </summary>
public {0}Relation AllParents
{
get
{
{3}
return this;
}
}
{1}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?