随笔分类 -  Dapper

一个.net 下的 ORM
摘要:dapper.netT4PocoGenerator/1.0.0Dapper.ColumnMapper参考链接:http://blog.csdn.net/ymnets/article/details/8521627http://www.cnblogs.com/neozhu/archive/2015/0... 阅读全文
posted @ 2015-09-28 17:50 不能失败 阅读(241) 评论(0) 推荐(0)
摘要:https://github.com/tmsmith/Dapper-Extensions/wiki/PredicatesThe predicate system in Dapper Extensions is very simple to use. In the examples below we ... 阅读全文
posted @ 2015-05-31 17:58 不能失败 阅读(5365) 评论(0) 推荐(0)
摘要:Skip to contentSign up Sign inThis repository ExploreFeaturesEnterpriseBlog Watch 390 Star 2,538 Fork 844 StackExchange/dapper-dot-net branch: mast... 阅读全文
posted @ 2015-05-31 17:53 不能失败 阅读(1789) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Data;using System.Data.SqlClient;using System.Linq;using System.Text;using System.Threading... 阅读全文
posted @ 2015-05-31 17:13 不能失败 阅读(3030) 评论(0) 推荐(0)
摘要:namespace YourNamespace{ /// /// Uses the Name value of the ColumnAttribute specified, otherwise maps as usual. /// /// The type of the ... 阅读全文
posted @ 2014-10-20 23:14 不能失败 阅读(7280) 评论(2) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient; using Dapper; // to have a play, instal... 阅读全文
posted @ 2014-10-07 15:08 不能失败 阅读(2294) 评论(0) 推荐(2)
摘要:var args = new DynamicParameters(new {}); if (obj.orderId != null) { sb.Append(" AND OrderId = @OrderId"); args.Add("OrderId", obj.o... 阅读全文
posted @ 2014-09-28 23:48 不能失败 阅读(1230) 评论(0) 推荐(0)
摘要:http://www.tritac.com/bp-24-dapper-net-by-examplehttp://www.codeproject.com/Articles/212274/A-Look-at-Dapper-NET 阅读全文
posted @ 2014-09-18 17:18 不能失败 阅读(259) 评论(0) 推荐(0)