项目中需要使用支持PostgreSQL的ORM代码生成工具,搜寻了几个常用工具进行了考察,考察的原则是“支持PostgreSQL、易于使用”,最终选择了EntitysCodeGenerate。
考察结果如下:
mygeneration_131_20110102.exe
,成功配置,连接数据库成功,但是无法生成代码。mygeneration_1309_20081006.exe
,配置时驱动列表为空,无法使用。You cannot run MyGeneration without having MDAC 2.7+ installed. It is not included in the installer because the file is large and most people already have it installed.
Detect MDAC 2.7+
选项GentleBusinessObject.cst
文件的SourceTable参数时,无法指定PostgreSQL数据源(可能是需要自己按照GentleBusinessObject.cst
文件编写对应的配置。Gentle.Framework.Broker
对Model进行增删查改。配置上比较复杂,CodeSmith一次只能生成一个数据表,用起来不太方便。/******************************************
* 模块名称:实体 role
* 当前版本:1.0
* 开发人员:Administrator
* 生成时间:2015/7/8
* 版本历史:此代码由 VB/C#.Net实体代码生成工具(EntitysCodeGenerate 4.6) 自动生成。
*
******************************************/
using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Xml;
using System.IO;
using System.Text;
using System.Database;
using System.Database.ORMap;
using System.Database.Extend;
namespace ZHD.GIS.Entity
{
///
/// 实体 role
///
[Description("Primary:id")]
[Serializable]
public partial class role : BaseEntity
{
#region 构造函数
///
/// 实体 role
///
public role(){}
///
/// 实体 role
///
/// 主键id对应的值
public role(object keyValue)
{
ListDictionary list = new ListDictionary();
list.Add("id", keyValue);
ORMap ormap = new ORMap(this, this);
ormap.GetEntity(list);
}
///
/// 实体 role
///
/// 实体字段名
/// 实体字段名(colName)匹配相等的值
public role(string colName, object colValue)
{
ListDictionary list = new ListDictionary();
list.Add(colName, colValue);
ORMap ormap = new ORMap(this, this);
ormap.GetEntity(list);
}
///
/// 实体 role
///
/// 实体字段名数组
/// 实体字段名数组(colNames)匹配相等的值
public role(string[] colNames, object[] colValues)
{
if (colNames.Length == colValues.Length)
{
ListDictionary list = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
list.Add(colNames[i], colValues[i]);
}
ORMap ormap = new ORMap(this, this);
ormap.GetEntity(list);
}
}
///
/// 实体 role
///
/// 数据库访问核心类DbCore实例(用于DbCore事务)
/// 实体字段名
/// 实体字段名(colName)匹配相等的值
public role(DbCore dbCore, string colName, object colValue)
{
ListDictionary list = new ListDictionary();
list.Add(colName, colValue);
ORMap ormap = new ORMap(this, this);
ormap.GetEntity(dbCore, list);
}
///
/// 实体 role
///
/// 数据库访问核心类DbCore实例(用于DbCore事务)
/// 实体字段名数组
/// 实体字段名数组(colNames)匹配相等的值
public role(DbCore dbCore, string[] colNames, object[] colValues)
{
if (colNames.Length == colValues.Length)
{
ListDictionary list = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
list.Add(colNames[i], colValues[i]);
}
ORMap ormap = new ORMap(this, this);
ormap.GetEntity(dbCore, list);
}
}
#endregion
#region 私有变量
private string _id = null;
private string _name = null;
private string _comment = null;
#endregion
#region 公共属性
///
/// 主键 id(NOT NULL)
///
[DataObjectField(true)]
public string id
{
set{ _id=value;}
get{return _id;}
}
///
/// name(NOT NULL)
///
[DataObjectField(false)]
public string name
{
set{ _name=value;}
get{return _name;}
}
///
/// comment
///
[DataObjectField(false)]
public string comment
{
set{ _comment=value;}
get{return _comment;}
}
#endregion
#region 常用 增、删、改、查 操作(注:.Net下数值型字段初始值默认为0;带?的数值型字段值默认为null.)
#region public override int DelInsert/DelInsertEx 扩展方法
///
/// 先Delete后Insert 比较实体前后默认的初始值,且不插入与实体初始值相同的字段值
///
/// 先Delete后Insert并返回受影响的行数
public override int DelInsert()
{
ORMap ormap = new ORMap(this);
return ormap.DelInsert(new role());
}
///
/// 先Delete后Insert 插入所有字段,其中若与实体字段初始值相同则置该字段为空
///
/// 先Delete后Insert并返回受影响的行数
public override int DelInsertEx()
{
ORMap ormap = new ORMap(this);
return ormap.DelInsertEx(new role());
}
#endregion
#region public override int Insert 增加
///
/// 通过实体映射插入表中一条数据,插入与初始值不同的字段
///
/// 执行插入数据并返回受影响的行数
public override int Insert()
{
ORMap ormap = new ORMap(this);
return ormap.Insert(new role());
}
#endregion
#region public override int Update 更新
///
/// 通过实体映射及主键约束更新表中一条数据,并与比较实体初始值比较,若内容不同则更新之,否则不更新(并与实体默认初始值比较确定更新哪些字段,与默认初始值一样的字段将不更新)
///
/// 执行更新并返回受影响的行数
public override int Update()
{
ORMap ormap = new ORMap(this);
return ormap.Update(new role());
}
#endregion
#region public override int Save 保存 规则:按主键判断有就更新,没有就插入,且不保存与实体初始值相同的字段值
///
/// 保存 比较实体前后的值,若有与主键记录相同的就更新,没有就插入,且不保存与实体初始值相同的字段值
///
/// 执行更新或插入数据操作并返回受影响的行数
public override int Save()
{
ORMap ormap = new ORMap(this);
return ormap.Save1(new role());
}
#endregion
#region public role GetEntity 获取实体信息
///
/// 通过实体映射及主键值获取表中一条数据信息
///
/// 返回类型为 Entity 单条实体信息(若符合条件的记录多条,则返回第一条),没有为null
public role GetEntity()
{
ORMap ormap = new ORMap(this, new role());
return ormap.GetEntity() as role;
}
///
/// 通过实体映射及主键值获取表中一条数据信息
///
/// 数据库访问核心类DbCore实例
/// 返回类型为 Entity 单条实体信息(若符合条件的记录多条,则返回第一条),没有为null
public role GetEntity(DbCore dbCore)
{
ORMap ormap = new ORMap(this, new role());
return ormap.GetEntity(dbCore) as role;
}
///
/// 通过Hashtable键值实体条件获取表中一条数据信息
///
/// 获取实体信息的条件值
/// 返回类型为 Entity 单条实体信息(若符合条件的记录多条,则返回第一条),没有为null
public role GetEntity(Hashtable hash)
{
ORMap ormap = new ORMap(new role(), new role());
return ormap.GetEntity(hash) as role;
}
///
/// 根据ListDictitionary键值实体条件值获取实体信息,通常包含 10 个或 10 个以下项的集合,建议这时使用
///
/// 获取实体信息的条件值
/// 返回类型为 Entity 单条实体信息(若符合条件的记录多条,则返回第一条),没有为null
public role GetEntity(ListDictionary list)
{;
ORMap ormap = new ORMap(new role(), new role());
return ormap.GetEntity(list) as role;
}
#endregion
#region public int SaveByEntityCondition 保存 规则:按当前实体唯一条件值判断有就更新,没有就插入,且不保存与实体初始值相同的字段值
///
/// 用于没有主键表的辅助方法,有主键表的建议使用Save()
/// 保存 比较实体前后的值,若有与现在实体唯一记录相同的就更新,没有就插入,且不保存与实体初始值相同的字段值
/// 前提条件当前实体字段所赋值必须唯一,否则获取记录为多条返回多条更新将会产生不正确的结果,更新多条记录等问题
///
/// 更新或插入的实体唯一条件
/// 执行更新或插入数据操作并返回受影响的行数
public int SaveByEntityCondition(role entityCondition)
{
role entity = new role();
ORMap ormap = new ORMap(this, entity);
return ormap.SaveByAny(entity, entityCondition);
}
#endregion
#region public role GetEntityByEntityCondition 通过实体值获取一条实体信息
///
/// 用于没有主键表的辅助方法,有主键表的建议使用GetEntity()
/// 通过实体信息并与实体初始值的比较,凡与初始值比较不同的值作为实体的获取条件,返回相应的一条实体信息
///
/// 返回类型为 Entity 单条实体信息(若符合条件的记录多条,则返回第一条),没有返回为null
public role GetEntityByEntityCondition()
{
ORMap ormap = new ORMap(this, new role());
return ormap.GetEntityByAny() as role;
}
#endregion
#endregion
#region public role FromXml 相关Xml操作
///
/// 通过与持久化实体信息相对应Xml格式的文本信息实例化到该实体信息
///
/// 与持久化实体信息相对应Xml格式的文本信息
/// 返回对应的实体信息
public role FromXml(string xmlString)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromXml(xmlString) as role;
}
///
/// 通过与持久化实体信息相对应Xml格式的文本信息实例化到该实体信息
///
/// 文件的 URL,该文件包含要加载的 XML 文档。URL 既可以是本地文件,也可以是 HTTP URL(Web 地址)。
/// 实例化该实体信息并与持久化实体信息相对应xmlString文本信息一致
public role FromXmlFile(string filename)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromXmlFile(filename) as role;
}
#endregion
#region public role FromString 通过与持久化实体信息相对应的字符串拼接文本信息实例化到该实体信息
///
/// 通过与持久化实体信息相对应的字符串拼接文本信息实例化到该实体信息
///
/// 与持久化实体信息相对应的字符串拼接文本信息
/// 返回对应的实体信息
public role FromString(string entityString)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromEntityString(entityString) as role;
}
#endregion
#region public role FromJSON 通过与持久化实体信息相对应的JSON格式信息实例化到该实体信息
///
/// 通过与持久化实体信息相对应的JSON格式文本信息实例化到该实体信息
///
/// JSON格式的实体信息
/// 返回实例化后的实体信息并与JSON格式文本信息保持一致
public role FromJSON(string jsonString)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromJSON(jsonString) as role;
}
///
/// 通过与持久化实体信息相对应的Json文本信息实例化到该实体信息
///
/// Json格式的实体文本信息
/// Json格式设置选项
/// 返回实例化后的实体信息并与JSON文本信息保持一致
public role FromJson(string jsonString, System.Database.Provider.JsonFormatting formatting)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromJson(jsonString, formatting) as role;
}
#endregion
#region public role FromDataRow 通过与实体信息相对应的 DataRow 实例化到实体信息
///
/// 通过与实体信息相对应的 DataRow 实例化到实体信息
///
/// 与实体信息相对应的 DataRow
/// 返回实例化后的实体信息并与 DataRow 信息一致
public role FromDataRow(System.Data.DataRow dr)
{
ORMap ormap = new ORMap(this, new role());
return ormap.FromDataRow(dr) as role;
}
#endregion
#region 公共静态只读属性
///
/// 表名 表原信息描述: role
///
public static readonly string s_TableName = "role";
///
/// 信息描述: id(NOT NULL)
///
public static readonly string s_id = "role┋id┋System.String";
///
/// 信息描述: name(NOT NULL)
///
public static readonly string s_name = "role┋name┋System.String";
///
/// 信息描述: comment
///
public static readonly string s_comment = "role┋comment┋System.String";
#endregion
}
///
/// role实体集
///
[Serializable]
public class roleS : CollectionBase
{
#region 构造函数
///
/// role实体集
///
public roleS(){}
///
/// role实体集
///
/// 是否获取所有数据到实体集对象的标示(true获取所有实例信息,false仅实例化对象)
public roleS(bool blnRetrieveData)
{
if (blnRetrieveData)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(new ListDictionary());
}
}
///
/// role实体集
///
/// 是否获取所有数据到实体集对象的标示(true获取所有实例信息,false及实例化对象)
/// 排序字段数组
/// 对应排序方向
public roleS(bool blnRetrieveData, string[] orderColumns, OrderDirection[] orderDirections)
{
if (blnRetrieveData)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(new ListDictionary(), new Operation[] { }, orderColumns, orderDirections);
}
}
///
/// role实体集
///
/// 实体字段名
/// 实体字段名匹配相等的值
public roleS(string colName,object colValue)
{
ListDictionary listColAndValue = new ListDictionary();
listColAndValue.Add(colName, colValue);
ORMaps ormaps = new ORMaps(new role(),this);
ormaps.GetEntitys(listColAndValue);
}
///
/// role实体集
///
/// 实体字段名
/// 比较操作符
/// 实体字段名对应的值
public roleS(string colName, Operation operate,object colValue)
{
ListDictionary listColAndValue = new ListDictionary();
listColAndValue.Add(colName, colValue);
ORMaps ormaps = new ORMaps(new role(),this);
ormaps.GetEntitys(listColAndValue, operate);
}
///
/// role实体集
///
/// 实体字段名
/// 比较操作符
/// 实体字段名对应的值
/// 排序字段
/// 对应排序方向
public roleS(string colName, Operation operate, object colValue, string orderColumn, OrderDirection orderDirection)
{
ListDictionary listColAndValue = new ListDictionary();
listColAndValue.Add(colName, colValue);
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, new Operation[] { operate }, new string[] { orderColumn }, new OrderDirection[] { orderDirection });
}
///
/// role实体集
///
/// 实体字段名
/// 比较操作符
/// 实体字段名对应的值
/// 排序字段数组
/// 对应排序方向
public roleS(string colName, Operation operate, object colValue, string[] orderColumns, OrderDirection[] orderDirections)
{
ListDictionary listColAndValue = new ListDictionary();
listColAndValue.Add(colName, colValue);
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, new Operation[] { operate }, orderColumns, orderDirections);
}
///
/// role实体集
///
/// 实体字段名数组
/// 实体字段名数组匹配相等的值
public roleS(string[] colNames, object[] colValues)
{
if (colNames.Length == colValues.Length)
{
ListDictionary listColAndValue = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
listColAndValue.Add(colNames[i], colValues[i]);
}
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue);
}
}
///
/// role实体集
///
/// 实体字段名数组
/// 比较操作符数组
/// 实体字段名数组对应的值
/// 排序字段数组
public roleS(string[] colNames, Operation[] operates, object[] colValues, string[] orderColumns)
{
if (colNames.Length == operates.Length && colNames.Length == colValues.Length)
{
ListDictionary listColAndValue = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
listColAndValue.Add(colNames[i], colValues[i]);
}
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, operates, orderColumns);
}
}
///
/// role实体集
///
/// 实体字段名数组
/// 比较操作符数组
/// 实体字段名数组对应的值
/// 排序字段数组
/// 对应排序方向
public roleS(string[] colNames, Operation[] operates, object[] colValues, string[] orderColumns, OrderDirection[] orderDirections)
{
if (colNames.Length == operates.Length && colNames.Length == colValues.Length)
{
ListDictionary listColAndValue = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
listColAndValue.Add(colNames[i], colValues[i]);
}
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, operates, orderColumns, orderDirections);
}
}
///
/// role实体集
///
/// 实体字段名及对应匹配相等的值
public roleS(ListDictionary listColAndValue)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue);
}
///
/// role实体集
///
/// 实体字段名及对应匹配的值
/// 实体字段名对应比较操作符
public roleS(ListDictionary listColAndValue, Operation[] operates)
{
if (listColAndValue.Count == operates.Length)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, operates);
}
}
///
/// role实体集
///
/// 实体字段名及对应匹配的值
/// 实体字段名对应比较操作符
/// 排序字段数组
/// 对应排序方向
public roleS(ListDictionary listColAndValue, Operation[] operates, string[] orderColumns,OrderDirection[] orderDirections)
{
if (listColAndValue.Count == operates.Length)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(listColAndValue, operates, orderColumns, orderDirections);
}
}
///
/// role实体集
///
/// 排序字段
/// 排序方向
public roleS(string orderColumn,OrderDirection orderDirection)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(new ListDictionary(), new Operation[] { }, new string[] { orderColumn }, new OrderDirection[] { orderDirection });
}
///
/// role实体集
///
/// 排序字段数组
/// 对应排序方向
public roleS(string[] orderColumns,OrderDirection[] orderDirections)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(new ListDictionary(), new Operation[] { }, orderColumns, orderDirections);
}
///
/// role实体集
///
/// 数据库访问核心类DbCore实例(用于DbCore事务)
/// 实体字段名及对应匹配的值
/// 实体字段名对应比较操作符
/// 排序字段数组
/// 对应排序方向
public roleS(DbCore dbCore, ListDictionary listColAndValue, Operation[] operates, string[] orderColumns,OrderDirection[] orderDirections)
{
if (listColAndValue.Count == operates.Length)
{
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(dbCore, listColAndValue, operates, orderColumns, orderDirections);
}
}
///
/// role实体集
///
/// 数据库访问核心类DbCore实例(用于DbCore事务)
/// 实体字段名数组
/// 实体字段名对应比较操作符
/// 实体字段名数组对应的值
/// 排序字段数组
/// 对应排序方向
public roleS(DbCore dbCore, string[] colNames, Operation[] operates, object[] colValues, string[] orderColumns,OrderDirection[] orderDirections)
{
if (colNames.Length == operates.Length && colNames.Length == colValues.Length)
{
ListDictionary listColAndValue = new ListDictionary();
for (int i = 0; i < colNames.Length; i++)
{
listColAndValue.Add(colNames[i], colValues[i]);
}
ORMaps ormaps = new ORMaps(new role(), this);
ormaps.GetEntitys(dbCore, listColAndValue, operates, orderColumns, orderDirections);
}
}
#endregion
#region 属性方法
///
/// role集合 增加方法
///
public void Add(role entity)
{
this.List.Add(entity);
}
///
/// role集合 索引
///
public role this[int index]
{
get { return (role)this.List[index]; }
set { this.List[index] = value; }
}
///
/// 将role实体集转化到内存中一个数据表
///
/// 与实体集数据对等的内存中一个数据表
public System.Data.DataTable ToDataTable()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.ToDataTable();
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值(并与实体默认初始值比较确定保存哪些字段),若有与主键记录相同的就更新,没有就插入
///
/// 数据库访问核心类DbCore实例(用于DbCore事务,执行命令先打开(Open)数据库连接)
/// 受影响的行数
public int Save(DbCore dbCore)
{
int intRecord = 0;
foreach (role entity in this)
{
intRecord += entity.Save(dbCore);
}
return intRecord;
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值,若有与主键字段记录相同的就更新,没有就插入,保存全部字段
///
/// 数据库访问核心类DbCore实例(用于DbCore事务,执行命令先打开(Open)数据库连接)
/// 受影响的行数
public int SaveAll(DbCore dbCore)
{
int intRecord = 0;
foreach (role entity in this)
{
intRecord += entity.SaveAll(dbCore);
}
return intRecord;
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值,若有与主键字段记录相同的就更新,没有就插入,保存全部字段
/// 其中若与实体属性字段初始值相同则置该字段为空
///
/// 数据库访问核心类DbCore实例(用于DbCore事务,执行命令先打开(Open)数据库连接)
/// 受影响的行数
public int SaveEx(DbCore dbCore)
{
int intRecord = 0;
foreach (role entity in this)
{
intRecord += entity.SaveEx(dbCore);
}
return intRecord;
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值(并与实体默认初始值比较确定保存哪些字段),若有与主键记录相同的就更新,没有就插入
///
/// 受影响的行数
public int Save()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.Save();
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值,若有与主键字段记录相同的就更新,没有就插入,保存全部字段
///
/// 受影响的行数
public int SaveAll()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.SaveAll();
}
///
/// 批量保存实体集中的对象信息 比较实体前后的值,若有与主键字段记录相同的就更新,没有就插入,保存全部字段
/// 其中若与实体属性字段初始值相同则置该字段为空
///
/// 受影响的行数
public int SaveEx()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.SaveEx();
}
///
/// 通过实体集中的对象信息映射及主键约束批量删除实体集对应表中的多条数据
///
/// 执行删除并返回受影响的行数
public int Delete()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.Delete();
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 比较实体前后默认的初始值,且不插入与实体初始值相同的字段值
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsert()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsert();
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 比较实体前后默认的初始值,且不插入与实体初始值相同的字段值
///
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsert(string strConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsert(strConditionKey);
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 比较实体前后默认的初始值,且不插入与实体初始值相同的字段值
///
/// 指定作为Delete依据字段,一个或多个,可以使用对应的EntityColumn属性
/// 先Delete后Insert并返回受影响的行数
public int DelInsert(string[] arrConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsert(arrConditionKey);
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段,其中若与实体字段初始值相同则置该字段为空
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsertEx()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertEx();
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段,其中若与实体字段初始值相同则置该字段为空
///
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsertEx(string strConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertEx(strConditionKey);
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段,其中若与实体字段初始值相同则置该字段为空
///
/// 指定作为Delete依据字段,一个或多个,可以使用对应的EntityColumn属性
/// 先Delete后Insert并返回受影响的行数
public int DelInsertEx(string[] arrConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertEx(arrConditionKey);
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsertAll()
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertAll();
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段
///
///
/// 先Delete后Insert并返回受影响的行数
public int DelInsertAll(string strConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertAll(strConditionKey);
}
///
/// 批量保存实体集中的对象信息,先Delete后Insert 插入所有字段
///
/// 指定作为Delete依据字段,一个或多个,可以使用对应的EntityColumn属性
/// 先Delete后Insert并返回受影响的行数
public int DelInsertAll(string[] arrConditionKey)
{
ORMaps ormaps = new ORMaps(new role(), this);
return ormaps.DelInsertAll(arrConditionKey);
}
///
/// 将持久化实体集信息输出成Xml格式文本信息(不含DataType属性)
///
/// 与持久化实体集信息相对应Xml的文本信息
public string ToXml()
{
return this.ToXml(Formatting.None);
}
///
/// 将持久化实体集信息输出成Xml格式文本信息(不含DataType属性)
///
/// 指定 System.Xml.XmlTextWriter 的格式设置选项
/// 与持久化实体集信息相对应Xml指定格式化后的文本信息(不含DataType属性)
public string ToXml(Formatting xmlFormatting)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
string strName = "roleS";
sb.AppendLine("<" + strName + ">");
foreach (role e in this)
{
sb.AppendLine(e.ToXml(xmlFormatting));
}
sb.AppendLine("" + strName + ">");
return sb.ToString();
}
///
/// 将持久化实体集信息输出成Xml格式信息并写入到文件(不含DataType属性)
///
/// 要写入的文件名。如果目标文件已存在,则覆盖该文件。
/// 一个 System.Text.Encoding 对象,表示应用于字符串的编码。
/// 指定 System.Xml.XmlTextWriter 的格式设置选项
public void ToXml(string filename, Encoding encoding, Formatting xmlFormatting)
{
string xmlString = this.ToXml(xmlFormatting);
File.WriteAllText(filename, xmlString, encoding);
}
///
/// 将持久化实体集信息输出成Xml格式文本信息(含DataType属性)
///
/// 指定 System.Xml.XmlTextWriter 的格式设置选项
/// 与持久化实体集信息相对应Xml指定格式化后的文本信息
public string ToXml_(Formatting xmlFormatting)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
string strName = "roleS";
sb.AppendLine("<" + strName + ">");
foreach (role e in this)
{
sb.AppendLine(e.ToXml_(xmlFormatting));
}
sb.AppendLine("" + strName + ">");
return sb.ToString();
}
///
/// 将持久化实体集信息输出成Xml格式信息并写入到文件(含DataType属性)
///
/// 要写入的文件名。如果目标文件已存在,则覆盖该文件。
/// 一个 System.Text.Encoding 对象,表示应用于字符串的编码。
/// 指定 System.Xml.XmlTextWriter 的格式设置选项
public void ToXml_(string filename, Encoding encoding, Formatting xmlFormatting)
{
string xmlString = this.ToXml_(xmlFormatting);
File.WriteAllText(filename, xmlString, encoding);
}
///
/// 通过与持久化实体集信息相对应Xml格式的文本信息实例化到该实体集
///
///
/// 实例化该实体集信息并与持久化实体信息相对应xmlString文本信息一致
public roleS FromXml(string xmlString)
{
int index = 0;
string strSubXml = string.Empty;
this.Clear();
while (index != -1)
{
index = CommonHelp.GetSubXmlString(xmlString, "role", index, out strSubXml);
if (strSubXml != string.Empty)
{
role entity = new role();
entity = entity.FromXml(strSubXml);
this.Add(entity);
}
else
{
break;
}
}
return this;
}
///
/// 通过与持久化实体集信息相对应Xml格式的文本信息实例化到该实体集
///
/// 要打开以进行读取的文件
/// 实例化该实体集信息并与持久化实体信息相对应xmlString文本信息一致
public roleS FromXmlFile(string filename)
{
string xmlString = File.ReadAllText(filename);
return this.FromXml(xmlString);
}
///
/// 通过与持久化实体集信息相对应Xml格式的文本信息实例化到该实体集
///
/// 要打开以进行读取的文件
/// 应用到文件内容的编码。
/// 实例化该实体集信息并与持久化实体信息相对应xmlString文本信息一致
public roleS FromXmlFile(string filename, Encoding encoding)
{
string xmlString = File.ReadAllText(filename, encoding);
return this.FromXml(xmlString);
}
///
/// 将持久化实体集信息输出成JSON格式信息
///
/// 与持久化实体集信息相同的JSON格式信息
public string ToJSON()
{
StringBuilder sb = new StringBuilder();
foreach (role e in this)
{
sb.AppendLine(e.ToJSON() + ",");
}
return "[" + sb.ToString().TrimEnd(new char[] { '\n', '\r', ',' }) + "]";
}
///
/// 将持久化实体集信息输出成JSON格式的文本信息
///
/// Json格式设置选项
/// 与持久化实体集信息相同的JSON文本信息
public string ToJson(System.Database.Provider.JsonFormatting formatting)
{
StringBuilder sb = new StringBuilder();
foreach (role e in this)
{
sb.AppendLine(e.ToJson(formatting) + ",");
}
return "[" + sb.ToString().TrimEnd(new char[] { '\n', '\r', ',' }) + "]";
}
///
/// 通过与持久化实体集信息相对应的JSON格式信息实例化到该实体集信息
///
/// JSON格式的实体集信息
/// 返回实例化后的实体集信息并与JSON格式文本信息保持一致
public roleS FromJSON(string jsonString)
{
string[] arrayJson = jsonString.Trim(new char[] { '\n', '\r', ' ' }).TrimStart('[').TrimEnd(']').Replace("}\r\n,", "},").Split(new string[] { "}," }, StringSplitOptions.RemoveEmptyEntries);
this.Clear();
foreach(string str in arrayJson)
{
role entity = new role();
entity = entity.FromJSON(str);
this.Add(entity);
}
return this;
}
///
/// 通过与持久化实体集信息相对应的JSON格式文本信息实例化到该实体集信息
///
/// JSON格式的实体集信息
/// Json格式设置选项
/// 返回实例化后的实体集信息并与JSON格式文本信息保持一致
public roleS FromJson(string jsonString, System.Database.Provider.JsonFormatting formatting)
{
string[] arrayJson = jsonString.Trim(new char[] { '\n', '\r', ' ' }).TrimStart('[').TrimEnd(']').Replace("}\r\n,", "},").Split(new string[] { "}," }, StringSplitOptions.RemoveEmptyEntries);
this.Clear();
foreach (string str in arrayJson)
{
role entity = new role();
entity = entity.FromJson(str, formatting);
this.Add(entity);
}
return this;
}
///
/// 将持久化实体集信息输出成String格式信息
///
/// 与实体集信息相同的String格式信息
public override string ToString()
{
string strEntitys = String.Empty;
foreach (role e in this)
{
strEntitys += e.ToString() + "┋┋";
}
return strEntitys.TrimEnd('┋');
}
///
/// 通过与实体集信息相对应的String格式信息实例化到该实体集信息
///
/// 与实体集信息相同的String格式信息
/// 返回实例化后的实体集信息并与String格式信息保持一致
public roleS FromString(string entitysString)
{
this.Clear();
string[] arrayString = entitysString.Split(new string[] { "┋┋" }, StringSplitOptions.RemoveEmptyEntries);
foreach (string str in arrayString)
{
role entity = new role();
entity = entity.FromString(str);
this.Add(entity);
}
return this;
}
///
/// 通过与实体集信息相对应的 DataTable 实例化到实体集信息
///
/// 与实体集信息相同的 DataTable 信息
/// 返回实例化后的实体集信息并与 DataTable 信息一致
public roleS FromDataTable(System.Data.DataTable dtbl)
{
this.Clear();
foreach (System.Data.DataRow dr in dtbl.Rows)
{
role entity = new role();
entity = entity.FromDataRow(dr);
this.Add(entity);
}
return this;
}
#endregion
}
}