码迷,mamicode.com
首页 >  
搜索关键字:dapper    ( 448个结果
利用Dapper ORM搭建三层架构
利用Dapper关系对象映射器写的简单的三层架构。Dapper:StackOverFlow在使用的一个微型的ORM,框架整体效率较高,轻量级的ORM框架。网上有较多的扩展。此处只是简单的调用Dapper中的方法。UI层:Dapper.Console:一个简单的控制台程序。BLL业务逻辑层:Dappe...
分类:移动开发   时间:2015-01-17 20:43:49    阅读次数:431
[ASP.Net] 20141228_Dapper文章搜集
DbHelperSQL和Dapper数据访问的性能对比给力分享新的ORM => Dapper分享一个轻型ORM--Dapper选用理由
分类:移动开发   时间:2014-12-28 11:35:19    阅读次数:138
Dapper.NET——轻量ORM
Dapper.NET使用Dapper是一款轻量级ORM工具(Github)。如果你在小的项目中,使用Entity Framework、NHibernate 来处理大数据访问及关系映射,未免有点杀鸡用牛刀。你又觉得ORM省时省力,这时Dapper 将是你不二的选择。1、为什么选择Dapper轻量。只有...
分类:移动开发   时间:2014-12-26 12:32:46    阅读次数:233
关于Dapper的使用笔记3
1、默认的类型映射,直接以实体属性(或字段)映射到SQL中字段,(名称可以忽略大小写)2、如果字段带下划线的,设置Dapper.DefaultTypeMap.MatchNamesWithUnderscores=true; 即可。3、正因为有这个DefaultTypeMap默认的映射策略,所以,一般情...
分类:移动开发   时间:2014-11-28 14:02:02    阅读次数:264
关于Dapper的使用笔记2
public class t_SoDtl { [System.ComponentModel.Description("KeySeq")] public Guid ID { get; set; } //数据库中的列名KeySeq [System.Com...
分类:移动开发   时间:2014-11-27 20:05:12    阅读次数:198
关于Dapper的使用笔记1
********************************************************************1、ExecuteaqueryandmaptheresultstoastronglytypedListNote:allextensionmethodsassumet...
分类:移动开发   时间:2014-11-26 18:28:57    阅读次数:159
让Dapper+SqlCE支持ntext数据类型和超过4000字符的存储
使用Dapper和SqlCE进行开发的时候,如果数据库的某字段是采用的ntext数据类型,并且在这个字段存储的数据超过了4000个字符,会报如下的错误:Invalid parameter Size value '-1'. The value must be greater than or equal...
分类:移动开发   时间:2014-10-22 17:22:59    阅读次数:315
dapper 自定义数据库字段和代码中Model字段不一致时候的mapping方法
namespace YourNamespace{ /// /// Uses the Name value of the ColumnAttribute specified, otherwise maps as usual. /// /// The type of the ...
分类:移动开发   时间:2014-10-21 00:45:58    阅读次数:3600
dapper.rainbow
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient; using Dapper; // to have a play, instal...
分类:移动开发   时间:2014-10-07 17:34:53    阅读次数:182
dapper 写查询sql 时,多条件参数操作方法
var args = new DynamicParameters(new {}); if (obj.orderId != null) { sb.Append(" AND OrderId = @OrderId"); args.Add("OrderId", obj.o...
分类:移动开发   时间:2014-09-29 02:38:46    阅读次数:447
448条   上一页 1 ... 42 43 44 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!