business.format
来自「客户关系管理系统ASP.NET+VB.NET编程完整程序!」· FORMAT 代码 · 共 57 行
FORMAT
57 行
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------
namespace {0}
{
/// <summary>
/// Base class that all Table wrapping template objects inherit from.
/// </summary>
[System.Serializable()]
abstract public class Business : OrmLib.BusinessBase
{
/// <summary>
/// The data context of the underlying data row.
/// </summary>
internal {0}.DataManager DataContext;
/// <summary>
/// All the relations in the schema.
/// </summary>
protected System.Data.DataRelationCollection Relations;
/// <summary>
/// The associated dataset for the underlying row.
/// </summary>
protected System.Data.DataSet DataSet;
/// <summary>
/// Exposes the row to all classes in the assembly
/// </summary>
/// <value>
/// The underlying datarow this object wraps
/// </value>
internal System.Data.DataRow row
{
get{ return base.dataRow; }
set{ base.dataRow = value;}
}
/// <summary>
/// Constructor must have a data context.
/// </summary>
/// <param name="dataContext">The DataManager from which to work</param>
protected Business({0}.DataManager dataContext)
{
DataContext = dataContext;
DataSet = dataContext.DataSet;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?