上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 24 下一页
摘要: CUBRID 是一个全面开源,且完全免费的关系数据库管理系统。CUBRID为高效执行Web应用进行了高度优化,特别是需要处理大数据量和高并发请求的复杂商务服务。通过提供独特的最优化特性,CUBRID可以支持更多的并发请求,更少的响应时间。CUBRID这个名称,实际上是两个单词的组合:"Cube"(立 阅读全文
posted @ 2016-03-16 10:02 过错 阅读(1126) 评论(0) 推荐(0)
摘要: 错误提示: “未找到与约束 ContractName Microsoft.Internal.VisualStudio.PlatformUI.ISolutionAttachedCollectionServiceRequiredTypeIdentity Microsoft.Internal.Visual 阅读全文
posted @ 2016-03-04 09:34 过错 阅读(1779) 评论(0) 推荐(0)
摘要: 如果你的数据库没有sqlprofile,看这里。 如果你没时间装sqlserver那一系列的东西,看看这里,也许能解决呢。 这是一个迷你版的sqlprofile ,在win7下测试,链接sqlserver 2012没有问题。 http://expressprofiler.codeplex.com/ 阅读全文
posted @ 2016-03-03 23:47 过错 阅读(369) 评论(0) 推荐(0)
摘要: 1 Install-Package EntityFramework 2 创建实体类 public class Blog { public int BlogId { get; set; } public string Name { get; set; } } 3 创建context public cl 阅读全文
posted @ 2016-03-03 23:42 过错 阅读(220) 评论(0) 推荐(0)
摘要: Netsparker是一款安全简单的web应用安全漏电扫描工具。该软件功能非常强大,使用方便.Netsparker与其他综合 性的web应用安全扫描工具相比的一个特点是它能够更好的检测SQL Injection和 Cross-site Scripting类型的安全漏洞. 一 新建. 打开软件后,首先 阅读全文
posted @ 2016-02-16 10:32 过错 阅读(11998) 评论(0) 推荐(0)
摘要: group having 分页等 var ev = OrmLiteConfig.DialectProvider.SqlExpression<Author (); group的使用 同sql一样,注意group分组的字段要在select里 ev.Select(c = new { c.Birth... 阅读全文
posted @ 2016-01-20 17:51 过错 阅读(2159) 评论(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 过错 阅读(1015) 评论(1) 推荐(0)
摘要: 复杂点的使用2 InsertAll, UpdateAll and DeleteAll 的参数要是IEnumerables Each关键字 返回 IEnumerable 并且是延迟加载的 全局设置 当字符串为null时候,设置一个默认值 OrmLiteConfig.OnDbNullFilt... 阅读全文
posted @ 2016-01-20 16:18 过错 阅读(1536) 评论(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 过错 阅读(1624) 评论(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 过错 阅读(1742) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 24 下一页