📄 object.format
字号:
/* (ORM.NET)
* AccessorName:{1}
* This is a one time generated class skeleton by ORM.NET.
* Please add your business logic for the class here.
* Please do not remove these comments as they are required by ORM.NET to function correctly.
*/
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
namespace {0}
{
/// <summary>
/// Wraps a row and it's columns/children/parents
/// </summary>
/// <remarks>
/// This class should not be instantiated directly. See <see cref="DataManager.Get{1}"/>.
/// This class should be customized.
/// </remarks>
public class {1} : {1}OrmTemplate
{
/// <summary>
/// Constructor must have a row and data context.
/// </summary>
internal {1}( DataManager dataContext, DataRow ROW) : base( dataContext, ROW)
{
row = ROW;
}
}
/// <summary>
/// Holds a colection of {1}s that can be searched and enemerated.
/// </summary>
/// <remarks>
/// This class should not be instantiated directly. See <see cref="DataManager.Get{1}Collection"/>.
/// This class can be customized for more specific filters and finds
/// </remarks>
public class {1}Collection : {1}CollectionOrmTemplate
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -