DataRabbit 轻量的数据访问框架(02) -- IOr

系统 1409 0
(完全限定类名:DataRabbit.ORM.IOrmAccesser)

在DataRabbit框架中,通过IOrmAccesser来对数据库进行ORM访问,只要Entity(即ORM中的“O”)的定义与数据库表的结构完全一致,即可使用IOrmAccesser来对其进行ORM操作。

1.Entity
Entity除了包括成员变量与属性(这些变量与属性与数据库表的结构完全一致)外,不需要包含任何其它元素。在 轻量的数据访问框架 --序 的例子代码中,我们已经看到了一个Student Entity的示例。

2.Filter
我们经常需要依据条件来搜索数据,在DataRabbit的ORM框架中,使用Filter来表示一个单独的条件。Filter从ColumnItem继承,ColumnItem 表示数据列及其对应的值。比如,在进行Update操作时,我们可以使用一个ColumnItem 的List来指定要将哪些列的值更新为指定的值。
DataRabbit 轻量的数据访问框架(02) -- IOrmAccesser
首先,注意,Filter中包含一个GetBooleanExpression()方法,该方法将当前Filter转换为一个标准的Sql条件字句。
Filter的ComparisonOperator属性表明了采用何种比较符来构建条件表达式。
ComparisonOperators
<!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://www.CodeHighlighter.com/<br><br>--> [EnumDescription( " 比较操作符 " )]
public enum ComparisonOperators
{
[EnumDescription(
" = " )]
Equal,
[EnumDescription(
" != " )]
NotEqual,
[EnumDescription(
" > " )]
Greater,
[EnumDescription(
" < " )]
Less,
[EnumDescription(
" >= " )]
NotLessThan,
[EnumDescription(
" <= " )]
NotGreaterThan,
[EnumDescription(
" like " )]
Like
}
在IOrmAccesser接口中,很多方法都接受 params Filter[] conditions 或IList<Filter>参数,比如:
void Delete(IList < Filter > conditions);
void Delete( params Filter[]conditions);
比如,要删除数据库Student表中所有Age大于20岁且为男性的学生记录
stuOrmAccesser.Delete( new Filter(Student._Age, 20 ,ComparisonOperators.Greater), new Filter(Student._IsBoy, true ,ComparisonOperators.Equal));

针对接受 params Filter[] conditions 或IList<Filter>参数的方法,在OrmAccesser内部将会对每个Filter所表示的单个条件进行“与”操作,来作为搜索条件。那么如果需要对各个Filter进行“或”操作,或进行更复杂的逻辑组合(如“filter1 && (filter2 || filter3)”),就需要采用对应的接受IFilterTree作为参数的重载方法。

3.IFilterTree
IFilterTree 用于表示多个Filter的逻辑组合。
DataRabbit 轻量的数据访问框架(02) -- IOrmAccesser
注意,IFilterTree中也包含一个GetBooleanExpression()方法,该方法将当前Filter通过逻辑组合转换为一个标准的Sql条件字句。
当前的IFilterTree有两个默认实现:
(1)SimpleFilterTree
该实现仅仅支持最简单的对多个条件都进行“与”或都进行“或”的逻辑操作,更复杂的逻辑组合需求,可以使用AgileFilterTree。
如果将上述的例子,改用IFilterTree可以这样实现:
IList < Filter > conditions = new List < Filter > ();
conditions.Add(
new Filter(Student._Age, 20 ,ComparisonOperators.Greater));
conditions.Add(
new Filter(Student._IsBoy, true ,ComparisonOperators.Equal));
IFilterTree conditionTree
= new SimpleFilterTree (LogicType.And,conditions);
stuOrmAccesser.Delete(conditionTree);

(2)AgileFilterTree
AgileFilterTree 可以表示非常复杂的多个Filter的逻辑组合。它使用一个logicExpression字符串描述逻辑组合表达式,如"filter1 && (filter2 || filter3)",然后解析这个表达式获取正确的Sql条件语句。
比如,我们要找出所有年龄在20与25岁之间,或者名字为sky的学生:
IDictionary < string ,Filter > mapping = new Dictionary < string ,Filter > ();
mapping.Add(
" A " , new Filter (Student._Name, " sky " ,ComparisonOperators.Equal));
mapping.Add(
" B " , new Filter (Student._Age, 20 ,ComparisonOperators.Greater));
mapping.Add(
" C " , new Filter (Student._Age, 25 ,ComparisonOperators.Less));
IFilterTreeagileTree
= new AgileFilterTree ( " A||(B&&C) " ,mapping);

IList <Student> list = stuOrmAccesser.GetMuch(agileTree);


4.IOrmAccesser的泛型参数
IOrmAccesser是一个泛型接口,泛型参数是EntityType--即实体的类型,我们知道,每个EntityType对应着数据库中的一个表,Entity class的名字最好与数据表的名字一致,这样IOrmAccesser就可以根据EntityType知道要访问数据库中的哪个表。如果Entity class的名字最好与数据表的名字不一致,也没关系,我们可以通过向IDataAccesser的OrmCoagent属性注入IOrmCoagent来提供EntityType与数据表名称的映射关系。IOrmCoagent接口定义如下:
public interface IOrmCoagent
{
/// <summary>
/// GetTableName根据Entity类型获取对应的数据库表名
/// </summary>
string GetTableName(TypeentityType);
}
IOrmAccesser可以通过IOrmCoagent的GetTableName()方法来获取EntityType所对应的数据库表的名称。

5.基本"CRUD"方法

IOrmAccesser提供了基本的“CRUD”方法,如Insert,Update,Delete,GetOne,GetMuch,GetDataSet等等。这些方法都提供了多个重载,以接收单个Filter条件或多个Filter以及IFilterTree。
大多数方法的含义都特别清晰明了,有几个方法的含义需要特别指出一下:
/// <summary>
/// GetMuchWithoutBlob根据参数conditions来提取符合条件的所有Entity,但是Entity的blob字段没有被填充。
/// </summary>
IList < EntityType > GetMuchWithoutBlob( params Filter[]conditions);

/// <summary>
/// LoadBlob填充entity的Blob字段
/// </summary>
void LoadBlob(EntityTypeentity);
/// <summary>
/// Update更新符合conditions的记录中由columnItems指定的各个Column为对应目标值。
/// </summary>
void Update(IList < ColumnItem > columnItems,IList < Filter > conditions);

/// <summary>
/// GetDataSet选取表中符合条件的row,并且只返回columns指定的列。
/// </summary>
DataSetGetDataSet(IList < Filter > conditions, params string []columns);

6.基于主外键关系进行Get获取
IOrmAccesser会自动依据数据表的主外键关系来进行关系加载,比如,Student表中有MentorID字段(外键),对应Mentor表中的主键。那么,IOrmAccesser的GetParent方法,就可以根据指定的Student对象返回Mentor对象。
Mentormentor = stuOrmAccesser.GetParent < Mentor > (student);
基于主外键关系进行Get的方法包括:
/// <summary>
/// GetParent依据entity中外键的值,获取主表中的实体。外键建立了"语义"上的"Master-Detail"关系
/// </summary>
ParentTypeGetParent < ParentType > (EntityTypeentity);

/// <summary>
/// GetForeigner依据entity中名为fkeyName外键的值,获取主表中的对应实体。外键没有"语义"上的"Master-Detail"关系
/// </summary>
ForeignerTypeGetForeigner < ForeignerType > (EntityTypeentity, string fkeyName);

/// <summary>
/// GetChildList依据entity中主键的值,获取从表中的所有相关实体
/// </summary>
IList < ChildType > GetChildList < ChildType > (EntityTypeentity);

/// <summary>
/// GetChildDataSet依据entity中主键的值,获取从表中的所有相关记录
/// </summary>
DataSetGetChildDataSet < ChildType > (EntityTypeentity);
#endregion

本文简单介绍了IOrmAccesser的一些基本功能和使用,在后面的文章中将介绍一些IOrmAccesser 高级用法


返回到: 轻量的数据访问框架 --序



DataRabbit 轻量的数据访问框架(02) -- IOrmAccesser


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论