引言:FluentData 是微型 ORM(micro-ORM)家族的一名新成员,旨在比大型 ORM(full ORM)更加易用。FluentData 于(2012-02月)推出,它使用 fluent API 并支持 SQL Server、SQL Azure、Oracle 和 MYSQL。
楼主在今年二月份看到博客园新闻中的推荐(http://news.cnblogs.com/n/132803/),然后在项目组的开发中接触到了这个ORM。 比起Entity Framework 和 NHibernate,都过于复杂而且难于学习.FluentData就简单的多了。不过楼主当时也是刚开始了解ORM和MVC,所以并没有接触过Entity Framework 和 NHibernate.不过对于小型站点而言,这个ORM是力荐大家了解下的.该ORM允许开发人员拥有对 SQL 较多的控制,而不是依赖 ORM 进行自动生成。它不仅可以使用 SQL 来执行查询、增添和更新操作,还可以支持使用存储过程和事务。根据文档描述,FluentData 可以在不改动已有结构的情况下,与任何业务对象一同工作。
下面楼主将一一举例向大家介绍楼主在开发过程中的运用.
一:下载该项目并且引用FluentData.dll,或者直接在解决方案中添加该开源项目.项目地址:http://fluentdata.codeplex.com/
二.dll引用入到我们的数据业务层.
它是我们与数据库操作中的上下文,所有的有关数据操作都调用它下面的方法。初始化它的连接字符串web.config
public static IDbContext QueryDB() { return new DbContext().ConnectionStringName("testDBContext", DbProviderTypes.SqlServer); }
<connectionStrings> <add name="testDBContext" connectionString="server=192.168.1.100;uid=sa;pwd=sa!;database=testDB;" /> </connectionStrings>
那么下面就可以在我们的数据业务层中根据自己的需求随心所欲的写sql了。
Product product = QueryDB().Sql(@"select * from Product where ProductId = 1").QuerySingle<Product>();
Product product = QueryDB().Sql("select * from Product where id=@id") .Parameter("id", id) .QuerySingle<Product>();
List<Product> product = QueryDB().Sql("select * from Product where id=@id") .Parameter("id", id) .Query<Product>();
using (var command = QueryDB().MultiResultSql()) { List<Category> categories = command.Sql( @"select * from Category; select * from Product;").Query<Category>(); List<Product> products = command.Query<Product>(); }
var productId = QueryDB().Insert("Product") .Column("Name", "The Warren Buffet Way") .Column("CategoryId", 1) .ExecuteReturnLastId();
var productId = QueryDB().Sql(@"insert into Product(Name, CategoryId) values('The Warren Buffet Way', 1);").ExecuteReturnLastId();
QueryDB().Update("Product") .Column("Name", "The Warren Buffet Way") .Column("CategoryId", 1) .Where("ProductId", 1) .Execute();
同上,也可以不用update()方法,而直接写sql.
QueryDB().Delete("Product").Where("ProductId", 1).Execute();
QueryDB().Delete<Product>("Product") .Where(x=>x.id,id) .Execute();
using (var context = QueryDB().UseTransaction) { context.Sql("update Product set Name = @0 where ProductId = @1") .Parameters("The Warren Buffet Way", 1) .Execute(); context.Sql("update Product set Name = @0 where ProductId = @1") .Parameters("Bill Gates Bio", 2) .Execute(); context.Commit(); }
在事物的操作中记得context.Commit();方法的执行,楼主曾经在自己的一个项目中需要用到事物,却忘记了执行提交这个方法,最后在源码的汪洋中探索许久。
有关存储过程的使用,楼主在实际项目开发中,用上了存储过程。该存储过程的作用是分页,那么这里也贴出来分享一下
public static List<T> getPage<T>(string tableName,string tableFields, string sqlWhere,string order,int pageIndex, int pageSize, out int total) { var store = QueryDB().StoredProcedure("PF_Sys_PageControl") .ParameterOut("totalPage", DataTypes.Int16) .Parameter("tableName", tableName) .Parameter("tableFields", tableFields) .Parameter("sqlWhere", sqlWhere) .Parameter("orderFields", order) .Parameter("pageSize", pageSize) .Parameter("pageIndex", pageIndex); var result=store.Query<T>(); total = store.ParameterValue<int>("totalPage"); return result; }
上面贴的都是一些方法内容,具体的可以用方法封装下,当然该ORM是基于Freamework4.0的,Idbcontext接口下的方法也有支持返回一个动态类型的,所以扩展性也不弱。具体的就在于灵活的运用。
至此;写到这里一定很激动了吧,大伙有时间有机会的话,也去尝试下吧。《温故知新系列》此文纪念下以前公司项目组的我和那老几位在青春的岁月中的激情!!