摘要: group having 分页等 var ev = OrmLiteConfig.DialectProvider.SqlExpression<Author (); group的使用 同sql一样,注意group分组的字段要在select里 ev.Select(c = new { c.Birth... 阅读全文
posted @ 2016-01-20 17:51 过错 阅读(2124) 评论(0) 推荐(0) 编辑
摘要: 复杂点的使用3 code first的使用,支持复杂类型 public enum PhoneType { Home, Work, Mobile,}public enum AddressType { Home, Work, Other,}public class Address { public ... 阅读全文
posted @ 2016-01-20 16:27 过错 阅读(983) 评论(1) 推荐(0) 编辑
摘要: 复杂点的使用2 InsertAll, UpdateAll and DeleteAll 的参数要是IEnumerables Each关键字 返回 IEnumerable 并且是延迟加载的 全局设置 当字符串为null时候,设置一个默认值 OrmLiteConfig.OnDbNullFilt... 阅读全文
posted @ 2016-01-20 16:18 过错 阅读(1489) 评论(2) 推荐(0) 编辑
摘要: 复杂点的使用1先看看这2个类class Customer { public int Id { get; set; } ...}class CustomerAddress { public int Id { get; set; } public int CustomerId { get; set; ... 阅读全文
posted @ 2016-01-20 15:49 过错 阅读(1579) 评论(0) 推荐(1) 编辑
摘要: 查 根据id var result = db.SingleById<Poco (1); 根据字段 var customer = db.Single<Customer (new { customer.Email }); 动态结果 db.Select<List<object (db.From... 阅读全文
posted @ 2016-01-20 14:42 过错 阅读(1712) 评论(0) 推荐(0) 编辑
摘要: 修改db.Update(new Person { Id = 1, FirstName = "Jimi", LastName = "Hendrix", Age = 27});// sql:UPDATE "Person" SET "FirstName" = 'Jimi',"LastName" = 'H... 阅读全文
posted @ 2016-01-20 13:45 过错 阅读(1495) 评论(0) 推荐(2) 编辑
摘要: 删除 db.DeleteAll<Shipper (); //各种姿势 db.Delete<Person (p = p.Age == 27);// db.Delete<Person (q = q.Where(p = p.Age == 27));// 同上 db.Delete<Person (whe... 阅读全文
posted @ 2016-01-20 13:24 过错 阅读(830) 评论(1) 推荐(0) 编辑
摘要: 创建表前一篇忘记写创建表了,这里补上。(其实前一篇也有那么一点)建议安装源码里的t4模板看看效果先。public 的属性才有效在表被创建或者删除的时候执行sql语句[PostCreateTable("INSERT INTO TableWithSeedData (Name) VALUES ('Foo... 阅读全文
posted @ 2016-01-20 13:09 过错 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: ServiceStack.OrmLite 笔记2 这篇主要介绍 增加 db.Insert(new Employee { Id = 1, Name = "Employee 1" }); //默认同步 await db.InsertAsync(new Employee { Id = 1, Name... 阅读全文
posted @ 2016-01-20 12:03 过错 阅读(2377) 评论(1) 推荐(1) 编辑
摘要: ServiceStack.OrmLite 笔记1 ServiceStack.OrmLite 这个东东就是个orm框架,可以实现类似ef的效果。具体的就不这里班门弄斧了。支持SqlServerDialect.Provider // Any SQL Server VersionSqlServer201... 阅读全文
posted @ 2016-01-20 10:56 过错 阅读(5685) 评论(9) 推荐(0) 编辑