06 2016 档案

摘要:try { } catch (DbEntityValidationException dbex) { string errMsg = string.Empty; foreach (var eve in dbex.... 阅读全文
posted @ 2016-06-30 18:38 shiningrise 阅读(500) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 表示业务操作结果的枚举, /// 对于业务务操作单元的影响只有二种状态, /// 成功,无变化: 操作将继续,事务将继续 /// 失败:将导致 操作被中断,事务被回滚 /// </summary> public enum OperationResultType { 阅读全文
posted @ 2016-06-30 01:12 shiningrise 阅读(357) 评论(0) 推荐(0) 编辑
摘要:https://msdn.microsoft.com/zh-cn/data/jj591621 Data Access and Storage > 学习 > Entity Framework > 开始操作 > Code First 迁移 本演练将提供对实体框架中 Code First 迁移的概述。您可以完成整个演练,也可以跳至自己感兴趣的主题。主题如下: 启用迁移 生成并运行迁移 自定义迁移 ... 阅读全文
posted @ 2016-06-29 22:50 shiningrise 阅读(678) 评论(0) 推荐(0) 编辑
摘要:/// /// 重写以筛选出当前上下文的实体映射信息 /// protected override IEnumerable EntityMappersFilter(IEnumerable entityMappers) { Type contextType = typeof(TDbContex... 阅读全文
posted @ 2016-06-29 22:48 shiningrise 阅读(1020) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-06-29 19:49 shiningrise 阅读(147) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/libingql/p/4675752.html 1. sessionState的4种mode模式 在ASP.NET中Session的sessionState的4中mode模式:Off、InProc、StateServer及SqlServer。 2. Off模式 关闭模式,即不需要使用Session。 单个页面关闭Session: 3. InPr... 阅读全文
posted @ 2016-06-29 19:41 shiningrise 阅读(5604) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/libingql/p/3330880.html 1、EF Code First创建数据库 新建控制台应用程序Portal,通过程序包管理器控制台添加EntityFramework。 在程序包管理器控制台中执行以下语句,安装EntityFramework。PM> Install-Package EntityFramework 安装成功后,界面... 阅读全文
posted @ 2016-06-29 19:37 shiningrise 阅读(252) 评论(0) 推荐(0) 编辑
摘要:https://api.alidayu.com/doc2/apiDetail?spm=0.0.0.0.SEe3dm&apiId=25450 阅读全文
posted @ 2016-06-29 14:27 shiningrise 阅读(157) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/joyhen/article/details/8477985 阅读全文
posted @ 2016-06-28 23:47 shiningrise 阅读(198) 评论(0) 推荐(0) 编辑
摘要:osharp3的事务处理是跳过savechangeing方法来控制的,没有DbContextScope专业 DbContextScope管理dbcontext的优劣本文不讨论 整合过程: 1、在.Data.Entity/Extensions/ServiceCollectionExtensions.c 阅读全文
posted @ 2016-06-27 15:15 shiningrise 阅读(1206) 评论(0) 推荐(1) 编辑
摘要:http://www.cnblogs.com/webfpc/archive/2010/03/10/1667101.html 首先了解一下不同应用程序域中的对象的通信方式有两种: 一种是跨应用程序域边界传输对象副本 一种是使用代理交换消息。 简单来讲,继承此类的对象可以跨越应用程序域边界被引用,甚至被 阅读全文
posted @ 2016-06-26 11:55 shiningrise 阅读(226) 评论(0) 推荐(0) 编辑
摘要:无法覆盖隔离级别更高的事务中的挂起的更改。 无法覆盖隔离级别更高的事务中的挂起的更改。 在正在读取数据时保持共享锁,以避免脏读,但是在事务结束之前可以更改数据,从而导致不可重复的读取或幻像数据。 在正在读取数据时保持共享锁,以避免脏读,但是在事务结束之前可以更改数据,从而导致不可重复的读取或幻像数据 阅读全文
posted @ 2016-06-26 11:04 shiningrise 阅读(323) 评论(0) 推荐(0) 编辑
摘要:https://efbulkinsert.codeplex.com/ https://github.com/loresoft/EntityFramework.Extended 阅读全文
posted @ 2016-06-25 20:05 shiningrise 阅读(504) 评论(1) 推荐(1) 编辑
摘要:string t = DateTime.Now.Ticks.ToString(); t = DESKey.DESEncrypt(t, DESKey.DesKeyStr); string[] strid = new string[t.Length];// for (int i = 0; i < t.L 阅读全文
posted @ 2016-06-25 15:49 shiningrise 阅读(1459) 评论(0) 推荐(0) 编辑
摘要:https://www.nuget.org/packages/ConfuserEx.Build/ 阅读全文
posted @ 2016-06-25 15:40 shiningrise 阅读(521) 评论(0) 推荐(0) 编辑
摘要:::打开开发人员命令提示符输入一下内容与证书密码sn -i CanChou.snk.pfx VS_KEY_4B89A33EE2B53C07 阅读全文
posted @ 2016-06-25 13:35 shiningrise 阅读(312) 评论(0) 推荐(0) 编辑
摘要:http://www.crsky.com/ 阅读全文
posted @ 2016-06-25 13:22 shiningrise 阅读(126) 评论(0) 推荐(0) 编辑
摘要:ILMerge http://www.microsoft.com/en-hk/download/details.aspx?id=17630 ILMerge 下载地址:http://www.microsoft.com/downloads/details.aspx?familyid=22914587-b 阅读全文
posted @ 2016-06-25 13:06 shiningrise 阅读(642) 评论(0) 推荐(0) 编辑
摘要:1、DataGridView数据绑定对比(DataTable与泛型List): 当DataGridView的DataSource是DataTable的时候,DataTable的数据改变时,DataGridView的数据会随之改变,无需重新绑定到DataGridView。 当DataGridView的 阅读全文
posted @ 2016-06-25 10:38 shiningrise 阅读(410) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/farb/p/4934476.html#pz 阅读全文
posted @ 2016-06-25 09:20 shiningrise 阅读(669) 评论(0) 推荐(0) 编辑
摘要:https://github.com/AutoMapper/AutoMapper.EF6 阅读全文
posted @ 2016-06-25 09:16 shiningrise 阅读(828) 评论(0) 推荐(0) 编辑
摘要:https://github.com/AutoMapper/AutoMapper/wiki/Queryable-Extensions 阅读全文
posted @ 2016-06-25 08:46 shiningrise 阅读(700) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/lori/p/3327898.html 阅读全文
posted @ 2016-06-25 08:39 shiningrise 阅读(366) 评论(0) 推荐(0) 编辑
摘要:http://m.blog.csdn.net/article/details?id=7026402 当我们扑捉程序错误时,调试器是开发者们最得力的助手。然而,ASP.NET的跟踪,在调试时是一个很棒的不容忽视的辅助,它允许你的ASP.NET代码在执行期间输出消息,提供有用信息有效帮助你发现问题所在。 阅读全文
posted @ 2016-06-25 08:07 shiningrise 阅读(308) 评论(0) 推荐(0) 编辑
摘要:The Repository Pattern with EF Code First & Dependency Injection in ASP.NET MVC3 Ray_Liang, 4 Jul 2011 GPL3 4.67 (58 votes) Rate this: vote 1vote 2vote 3vote 4vote 5 In this article, I ... 阅读全文
posted @ 2016-06-25 00:43 shiningrise 阅读(648) 评论(0) 推荐(0) 编辑
摘要:Microsoft.AspNet.Identity简介 Microsoft.AspNet.Identity是微软在MVC 5.0中新引入的一种membership框架,和之前ASP.NET传统的membership以及WebPage所带来的SimpleMembership(在MVC 4中使用)都有所 阅读全文
posted @ 2016-06-25 00:33 shiningrise 阅读(314) 评论(0) 推荐(0) 编辑
摘要:How to use context.Set and context.Entry, which ships with EF4.1 ? 阅读全文
posted @ 2016-06-25 00:28 shiningrise 阅读(402) 评论(0) 推荐(0) 编辑
摘要:DbExtensions.Include<T> Method (IQueryable<T>, String) https://msdn.microsoft.com/en-us/library/system.data.entity.dbextensions.include Namespace: Sys 阅读全文
posted @ 2016-06-24 23:15 shiningrise 阅读(1431) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/oppoic/p/ef_code_first_dbcontext.html#title02 阅读全文
posted @ 2016-06-24 21:57 shiningrise 阅读(175) 评论(0) 推荐(0) 编辑
摘要:protected override void OnModelCreating(DbModelBuilder modelBuilder) { var model = modelBuilder.Build(Database.Connection); var compliedModel = model. 阅读全文
posted @ 2016-06-24 15:45 shiningrise 阅读(424) 评论(0) 推荐(0) 编辑
摘要:https://efcache.codeplex.com/ 阅读全文
posted @ 2016-06-24 06:47 shiningrise 阅读(266) 评论(0) 推荐(0) 编辑
摘要:SELECT SUM(CASE WHEN STATE=1 THEN 1 ELSE 0 END) ,SUM(CASE WHEN STATE=2 THEN 1 ELSE 0 END) ,SUM(CASE WHEN STATE=3 THEN 1 ELSE 0 END) ,SUM(CASE WHEN STATE=4 THEN 1 ELSE 0 END) FROM TB 阅读全文
posted @ 2016-06-24 05:48 shiningrise 阅读(359) 评论(0) 推荐(0) 编辑
摘要:<system.web> <trace enabled="true" localOnly="true" pageOutput="true" /> 阅读全文
posted @ 2016-06-22 11:14 shiningrise 阅读(188) 评论(0) 推荐(0) 编辑
摘要:WPF 提示"该密钥文件可能受密码保护。若要更正此问题,请尝试再次导入证书,或手动将证书安装到具有以下密钥容器名称的强名称"的解决方法 1.打开Visual Studio 命令提示(2010): 开始->Microsoft Visual Studio 2010->Visual Studio Tool 阅读全文
posted @ 2016-06-22 10:22 shiningrise 阅读(210) 评论(0) 推荐(0) 编辑
摘要:https://github.com/kaedei/gitignore/blob/master/VisualStudio.gitignore 阅读全文
posted @ 2016-06-22 09:50 shiningrise 阅读(1317) 评论(0) 推荐(0) 编辑
摘要:当我们扑捉程序错误时,调试器是开发者们最得力的助手。然而,ASP.NET的跟踪,在调试时是一个很棒的不容忽视的辅助,它允许你的ASP.NET代码在执行期间输出消息,提供有用信息有效帮助你发现问题所在。 调试器和跟踪这两个技术有一点区别。调试器是一种自然的交互技术它依赖于你有能力暂停程序执行并检查当前 阅读全文
posted @ 2016-06-22 07:51 shiningrise 阅读(1198) 评论(0) 推荐(0) 编辑
摘要:一、DbContext介绍 DbContext是Entity Framework(EF)操作数据库的上下文网关(接口)。我们对数据库的所有操作都是通过DbContext完成的。下面我们将讨论在code first模式下如何创建自己的DbContext并配置优化。 二、创建DbContext 代码如下 阅读全文
posted @ 2016-06-22 00:14 shiningrise 阅读(2624) 评论(0) 推荐(0) 编辑
摘要:http://www.sufeinet.com http://tool.sufeinet.com/ 阅读全文
posted @ 2016-06-21 14:32 shiningrise 阅读(197) 评论(0) 推荐(0) 编辑
摘要:http://www.tuicool.com/articles/QvYbEn 一.EF,CodeFirst加密SQL连接符 LifeHelpContext继承的是 DbContext ,public LifeHelpContext() : base("SQLConnectionString"),可以 阅读全文
posted @ 2016-06-21 13:14 shiningrise 阅读(1256) 评论(0) 推荐(0) 编辑
摘要:http://blog.sina.com.cn/s/blog_9dcdd2020101nf4v.html 阅读全文
posted @ 2016-06-21 10:54 shiningrise 阅读(4682) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/henryzhu/archive/2013/01/27/csharp-5-new-callerinformation.html 去年8月,Visual Studio 2012和.NET Framework 4.5已经完成了,在.NET Framework 阅读全文
posted @ 2016-06-20 23:18 shiningrise 阅读(361) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using PostSharp.Laos; using PostSharp; namespace PostSharpApp { [MyTrace(AttributeTargetMembers="Test*")] ... 阅读全文
posted @ 2016-06-20 20:12 shiningrise 阅读(151) 评论(0) 推荐(0) 编辑
摘要:使用PostSharp 在.NET 平台上实现 AOP 摘要 本文首先介绍AOP(面向方面编程)的相关概念及理论,然后介绍如何使用PostSharp框架在.NET平台上实现AOP,最后对PostSharp的机制及AOP的优劣进行一个简单的分析。 AOP(Aspect-Oriented Program 阅读全文
posted @ 2016-06-20 19:33 shiningrise 阅读(368) 评论(0) 推荐(0) 编辑
摘要:C#中事件的使用 http://www.cnblogs.com/wayfarer/archive/2004/04/20/6712.html 用一个例子来说明事件的使用。 创建一个简单的类,名为FileWatch,包含事件OnfileChange。该类将检查在执行应用程序的目录(当前 目录,通常是项目 阅读全文
posted @ 2016-06-20 19:21 shiningrise 阅读(2223) 评论(0) 推荐(0) 编辑
摘要:http://www.codeproject.com/Articles/1080517/Aspect-Oriented-Programming-using-Interceptors-wit Download sample application (or see the latest on Githu 阅读全文
posted @ 2016-06-20 18:42 shiningrise 阅读(331) 评论(0) 推荐(0) 编辑
摘要:通过反射将变量值转为变量名本身 这是.NET反射的一个有趣小例子: 通过反射将变量值转为变量名本身. 当然要先添加命名空间:using System.Reflection; 示例代码如下: class Program { string name = "strA"; string strA = "st 阅读全文
posted @ 2016-06-20 16:51 shiningrise 阅读(510) 评论(0) 推荐(0) 编辑
摘要:.NET 中获取调用方法名 在写记录日志功能时,需要记录日志调用方所在的模块名、命名空间名、类名以及方法名,想到使用的是反射(涉及到反射请注意性能),但具体是哪一块儿还不了解,于是搜索,整理如下: 需要添加相应的命名空间: using System; using System.Diagnostics 阅读全文
posted @ 2016-06-20 16:10 shiningrise 阅读(518) 评论(0) 推荐(0) 编辑
摘要:https://github.com/aspnetboilerplate https://github.com/tangxuehua/enode daxnet的Apworks框架 http://www.cnblogs.com/mienreal/p/4340864.html https://githu 阅读全文
posted @ 2016-06-20 14:17 shiningrise 阅读(216) 评论(0) 推荐(0) 编辑
摘要:http://cachemanager.net/Documentation/Index/cachemanager_architecture https://www.nuget.org/packages/CacheManager.Web/ https://github.com/MichaCo/Cach 阅读全文
posted @ 2016-06-19 21:56 shiningrise 阅读(315) 评论(0) 推荐(0) 编辑
摘要:treeList.Sort((x, y) => x.SortIndex < y.SortIndex ? -1 : 0); 阅读全文
posted @ 2016-06-19 13:01 shiningrise 阅读(259) 评论(0) 推荐(0) 编辑
摘要:You already created a database after running your Code-First application the first time, but what about the second time onwards?? Will it create a new 阅读全文
posted @ 2016-06-19 10:13 shiningrise 阅读(159) 评论(0) 推荐(0) 编辑
摘要:git rebase -i HEAD~[number_of_commits] git rebase -i HEAD~2 阅读全文
posted @ 2016-06-18 17:58 shiningrise 阅读(158) 评论(0) 推荐(0) 编辑
摘要:var databaseInitializer = new DatabaseInitializer(); databaseInitializer.MapperAssemblyFinder = new EntityMapperAssemblyFinder() { AllAssemblyFinder = new CanDoo.Core.Reflecti... 阅读全文
posted @ 2016-06-18 09:02 shiningrise 阅读(272) 评论(0) 推荐(0) 编辑
摘要:Move the ApplicationUser definition to your DAL. Inherit your MyDbContext from IdentityDbContext<ApplicationUser> or IdentityDbContext OnModelCreating 阅读全文
posted @ 2016-06-18 03:20 shiningrise 阅读(1034) 评论(0) 推荐(0) 编辑
摘要:public class CanDooDbContext : DbContextBase { protected override void OnModelCreating(DbModelBuilder modelBuilder) { if (modelBuilder == null) { ... 阅读全文
posted @ 2016-06-17 17:08 shiningrise 阅读(433) 评论(0) 推荐(0) 编辑
摘要:VS2015 推荐插件///////////////////////////////////////////////////////////////////////////////////////////代码辅助及显示增强SuperCharger是原来的CodeMap在VS2013/VS2015上的 阅读全文
posted @ 2016-06-17 11:15 shiningrise 阅读(27716) 评论(0) 推荐(3) 编辑
摘要:CREATE TABLE dbo.ELMAH_Error ( ErrorId UNIQUEIDENTIFIER NOT NULL, Application NVARCHAR(60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, Host NVARCHAR(50) COLLATE SQL_Latin1_G... 阅读全文
posted @ 2016-06-17 10:53 shiningrise 阅读(280) 评论(0) 推荐(0) 编辑
摘要:上周码程序的时候碰到个问题,因为设计上的约束,一个方法接受的参数只能为List<object>类型,然而该方法需要处理的真实数据则是确定的List<Currency>。然而C#不允许显示的直接转换类型,并且两个方向上都不可以操作。这个问题让我爆了一会儿,最后在MSDN上找到了一个OfType<T>的 阅读全文
posted @ 2016-06-17 02:09 shiningrise 阅读(4008) 评论(0) 推荐(0) 编辑
摘要:public static class ApiHelper { public static ReslultInfo Try(Action> action) { var r = new ReslultInfo(); try { action(r)... 阅读全文
posted @ 2016-06-15 20:38 shiningrise 阅读(648) 评论(0) 推荐(0) 编辑
摘要:/// /// 测试获取所有物流 /// [TestMethod] public void TestExpressController() { var Expresss = new List { new Express{Code="01",Name="测试... 阅读全文
posted @ 2016-06-15 17:02 shiningrise 阅读(568) 评论(0) 推荐(0) 编辑
摘要:Request Headers: User-Agent: FiddlerHost: localhost:3248Content-Type: application/json; charset=utf-8 Content-Length: 63 要加上Content-Type: application/ 阅读全文
posted @ 2016-06-15 12:27 shiningrise 阅读(267) 评论(0) 推荐(0) 编辑
摘要:我们在开发WEB项目的时候,一般应用逻辑跟ASPX页面是分离的项目。应用逻辑一般会是一个DLL组件项目。如果这个组件项目中A方法使用了Session、Cookie等信息的读写,则这个方法就很难写单元测试。 但并不是写不出来,要写出来大致思路如下: 目标: 构建一个测试的环境,把需要的Session、 阅读全文
posted @ 2016-06-15 09:50 shiningrise 阅读(824) 评论(0) 推荐(0) 编辑
摘要:ASP.NET WebAPI 08 Message,HttpConfiguration,DependencyResolver Message WebAPI作为通信架构必定包含包含请求与响应两个方法上的报文,在WebAPI它们分别是HttpRequestMessage,HttpResponseMess 阅读全文
posted @ 2016-06-14 23:50 shiningrise 阅读(967) 评论(0) 推荐(0) 编辑
摘要:不管你爱与不爱,单元测试对于一个软件的长治久安还是必不可少的一环。在Visual Studio 2012后,VS中的测试浏览器也能与第三方的集成了,用起来还是非常方便的。目前在.Net框架下的测试工具主要有Nunit、内置的MSTest以及Xunit这三个工具,本文就简单的介绍一下如何在VS中使用X 阅读全文
posted @ 2016-06-14 23:15 shiningrise 阅读(2143) 评论(0) 推荐(1) 编辑
摘要:Entity Framework 延伸系列目录 今天我们来聊聊EF的日志记录. 一个好的数据库操作记录不仅仅可以帮你记录用户的操作, 更应该可以帮助你获得效率低下的语句来帮你提高运行效率 废话不多说,我们开始 环境和相关技术 本文采用的环境与技术 系统:WIN7 数据库:SQL Server2008 阅读全文
posted @ 2016-06-14 18:33 shiningrise 阅读(438) 评论(0) 推荐(0) 编辑
摘要:改为 阅读全文
posted @ 2016-06-14 11:44 shiningrise 阅读(189) 评论(0) 推荐(0) 编辑
摘要:- - - --> - + + --> + + + + --> 阅读全文
posted @ 2016-06-13 13:45 shiningrise 阅读(272) 评论(0) 推荐(0) 编辑
摘要:IIS AppPool\jzzcj 阅读全文
posted @ 2016-06-13 09:22 shiningrise 阅读(140) 评论(0) 推荐(0) 编辑
摘要:https://visualstudiogallery.msdn.microsoft.com/4934b087-e6cc-44dd-b992-a71f00a2a6df 阅读全文
posted @ 2016-06-12 23:37 shiningrise 阅读(459) 评论(0) 推荐(0) 编辑
摘要:安装 nuget Microsoft.Net.Compilers 阅读全文
posted @ 2016-06-12 08:50 shiningrise 阅读(1255) 评论(0) 推荐(0) 编辑
摘要:http://www.c-sharpcorner.com/blogs/dynamic-objects-conveting-into-data-table-in-c-sharp1 阅读全文
posted @ 2016-06-10 17:15 shiningrise 阅读(261) 评论(0) 推荐(0) 编辑
摘要:https://developingsoftware.com/configuring-autofac-to-work-with-the-aspnet-identity-framework-in-mvc-5 Configuring Autofac to work with the ASP.NET Id 阅读全文
posted @ 2016-06-10 00:47 shiningrise 阅读(2763) 评论(0) 推荐(0) 编辑
摘要:FineUI非常好用,但是有一个缺点,就是不支持dynamic对象的数据绑定。查了一下源代码,找了解决方案,其实只需要几行代码就可以搞定,这就是开源的好处。 本想直接在CodePlex上贡献代码,但不知道怎么加入项目,直接写在这儿吧,如果三石觉得有用,可以考虑合并在FineUI的下一个版本中。 这是ObjectUtil类的GetPropertyValue方法,加上4行代码,即可实现对dynam... 阅读全文
posted @ 2016-06-10 00:39 shiningrise 阅读(455) 评论(0) 推荐(1) 编辑
摘要:http://www.cnblogs.com/John-Connor/archive/2012/05/03/2478821.html 引言-- 在初级篇中,我们介绍了如何利用基于ASP.NET MVC的Web程序中的Global文件来简单的重写路由。也介绍了它本身的局限性-依赖于路由信息中的键值对: 阅读全文
posted @ 2016-06-09 23:45 shiningrise 阅读(856) 评论(1) 推荐(1) 编辑
摘要:using System; using System.Web; using System.Web.Routing; using Nop.Core; using Nop.Core.Data; using Nop.Core.Infrastructure; using Nop.Services.Events; using Nop.Services.Seo; using Nop.Web.Framewor... 阅读全文
posted @ 2016-06-09 23:39 shiningrise 阅读(350) 评论(0) 推荐(0) 编辑
摘要:https://github.com/Azure/aspnet-redis-providers https://www.nuget.org/packages/Microsoft.Web.RedisSessionStateProvider/ 阅读全文
posted @ 2016-06-09 20:00 shiningrise 阅读(1026) 评论(0) 推荐(0) 编辑
摘要:http://www.xuebuyuan.com/356638.html 选择MiniProfiler.EF 默认会把MiniProfiler安装上,笔者程序是Asp.Net WebForm 不需要安装MiniProfiler.MVC3 2: 在Global.asax中添加下面代码: void Ap 阅读全文
posted @ 2016-06-09 19:49 shiningrise 阅读(673) 评论(0) 推荐(0) 编辑
摘要:AutoMapper用法 AutoMapper是对象到对象的映射工具。在完成映射规则之后,AutoMapper可以将源对象转换为目标对象。 作者:齐飞 原文:http://www.qeefee.com/article/automapper 配置AutoMapper映射规则 AutoMapper是基于 阅读全文
posted @ 2016-06-09 18:04 shiningrise 阅读(263) 评论(0) 推荐(0) 编辑
摘要:https://github.com/trailmax/IoCIdentitySample TL;DR: Registration code for Autofac, for SimpleInjector, for Unity. Tony Mackay has an alternative walk 阅读全文
posted @ 2016-06-09 17:44 shiningrise 阅读(1174) 评论(0) 推荐(0) 编辑
摘要:/// /// Register dependencies /// /// Config protected virtual void RegisterDependencies(NopConfig config) { var builder = new ContainerB... 阅读全文
posted @ 2016-06-09 17:35 shiningrise 阅读(906) 评论(0) 推荐(0) 编辑
摘要:http://stackoverflow.com/questions/6173566/run-time-registration-with-autofac Yes you can, using the Update method on ContainerBuilder: Autofac: canno 阅读全文
posted @ 2016-06-09 17:26 shiningrise 阅读(288) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/smileberry/p/4047835.html 阅读全文
posted @ 2016-06-09 16:40 shiningrise 阅读(161) 评论(0) 推荐(0) 编辑
摘要:http://www.codemaid.net/ http://www.codemaid.net/documentation/ http://www.wtoutiao.com/p/C9bNHv.html 阅读全文
posted @ 2016-06-09 14:15 shiningrise 阅读(186) 评论(0) 推荐(0) 编辑
摘要:https://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970 阅读全文
posted @ 2016-06-09 13:32 shiningrise 阅读(272) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/lyj/archive/2008/03/25/1119671.html 阅读全文
posted @ 2016-06-09 13:10 shiningrise 阅读(156) 评论(0) 推荐(0) 编辑
摘要:var q1 = from orderitem in q2 join pd in _iProductDetailContract.Entities on orderitem.ProductDetailId equals pd.Id join pm in ProductMainContract.Entities o... 阅读全文
posted @ 2016-06-09 00:16 shiningrise 阅读(2147) 评论(0) 推荐(0) 编辑
摘要:System.Diagnostics.Trace.Listeners.Clear(); System.Diagnostics.Trace.AutoFlush = true; System.Diagnostics.Trace.Listeners.Add(new System.Diagnostics.T 阅读全文
posted @ 2016-06-08 23:44 shiningrise 阅读(340) 评论(0) 推荐(0) 编辑
摘要:var query =from a in this.ObjectContext.siteInfo join b in this.ObjectContext.shopInfo on a.siteID equals b.siteID group new {a,b} by new { a.Lon, a.Lat, a.siteID, b.date} into g ... 阅读全文
posted @ 2016-06-08 23:36 shiningrise 阅读(943) 评论(0) 推荐(0) 编辑
摘要:1、左连接: var LeftJoin = from emp in ListOfEmployees join dept in ListOfDepartment on emp.DeptID equals dept.ID into JoinedEmpDept from dept in JoinedEmpDept.DefaultIfEmpty() select new ... 阅读全文
posted @ 2016-06-08 22:44 shiningrise 阅读(9236) 评论(1) 推荐(1) 编辑
摘要:http://www.linqpad.net/Download.aspx 阅读全文
posted @ 2016-06-08 22:39 shiningrise 阅读(164) 评论(0) 推荐(0) 编辑
摘要:http://www.nopcommerce.com/ 阅读全文
posted @ 2016-06-08 21:42 shiningrise 阅读(105) 评论(0) 推荐(0) 编辑
摘要:本篇介绍Linq的Group和Join操作,继续使用《Linq 学习(3) 语法结构》中介绍的数据源。GroupGroup是进行分组操作,同SQL中的Group By类似。原型如下: public static IEnumerable<IGrouping<TKey, TSource>> GroupB 阅读全文
posted @ 2016-06-08 21:03 shiningrise 阅读(417) 评论(0) 推荐(0) 编辑
摘要:https://code.msdn.microsoft.com/OWIN-OAuth-20-Authorization-ba2b8783#content 阅读全文
posted @ 2016-06-08 15:29 shiningrise 阅读(244) 评论(0) 推荐(0) 编辑
摘要:http://git.oschina.net/shiningrise/AutofacOwinDemo webform属性注入 pagebase方式 阅读全文
posted @ 2016-06-08 07:28 shiningrise 阅读(2219) 评论(2) 推荐(0) 编辑
摘要:using Owin; using Autofac; using Autofac.Integration.Owin; using System.Web; var owin = this.Request.GetOwinContext(); var scop = owin.GetAutofacLifetimeScope(); scop.Resolv... 阅读全文
posted @ 2016-06-08 05:33 shiningrise 阅读(558) 评论(0) 推荐(0) 编辑
摘要:结果是这两个hashcode相等 阅读全文
posted @ 2016-06-08 05:11 shiningrise 阅读(754) 评论(0) 推荐(0) 编辑
摘要:public static IAppBuilder UseAutofacMiddleware(this IAppBuilder app, ILifetimeScope container) { if (app == null) { throw new ArgumentNullExcep... 阅读全文
posted @ 2016-06-08 04:09 shiningrise 阅读(501) 评论(0) 推荐(0) 编辑
摘要:using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Security; using System.Web; using Autofac; using Autofac.Integration.Owin; namespace Owin { /// ... 阅读全文
posted @ 2016-06-08 04:07 shiningrise 阅读(409) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Web; using Autofac.Core.Lifetime; namespace Autofac.Integration.Web { /// /// Provides application-wide and per-request containers. /// public class Cont... 阅读全文
posted @ 2016-06-08 03:47 shiningrise 阅读(458) 评论(0) 推荐(0) 编辑
摘要:Autofac.Integration.Mvc 阅读全文
posted @ 2016-06-08 03:37 shiningrise 阅读(653) 评论(0) 推荐(0) 编辑
摘要:http://www.fishlee.net/ 阅读全文
posted @ 2016-06-07 01:57 shiningrise 阅读(181) 评论(0) 推荐(0) 编辑
摘要:http://yusi123.com/ 阅读全文
posted @ 2016-06-07 01:47 shiningrise 阅读(284) 评论(0) 推荐(0) 编辑
摘要:http://www.helixoft.com/vsdocman/overview.html https://blog.fishlee.net/2016/01/14/helixoft-vsdocman-7-3/ 阅读全文
posted @ 2016-06-07 01:40 shiningrise 阅读(356) 评论(0) 推荐(0) 编辑
摘要:学习Linq时,经常会遇到Linq使用Group By问题,这里将介绍Linq使用Group By问题的解决方法。 1.计数 语句描述:Linq使用Group By和Count得到每个CategoryID中产品的数量。 说明:先按CategoryID归类,取出CategoryID值和各个分类产品的数 阅读全文
posted @ 2016-06-06 23:01 shiningrise 阅读(217) 评论(0) 推荐(0) 编辑
摘要:Linq使用Group By 1 1.简单形式: var q = from p in db.Products group p by p.CategoryID into g select g; 语句描述:Linq使用Group By按CategoryID划分产品。 说明:from p in db.Pr 阅读全文
posted @ 2016-06-06 22:59 shiningrise 阅读(179) 评论(0) 推荐(0) 编辑
摘要:internal static bool VerifyColumns(SqlConnection conn, string table, params string[] columns) { List<string> list = new List<string>(); using (SqlComm 阅读全文
posted @ 2016-06-06 19:23 shiningrise 阅读(241) 评论(0) 推荐(1) 编辑
摘要:https://github.com/rustd/AspnetIdentitySample http://www.asp.net/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/membershi 阅读全文
posted @ 2016-06-06 17:10 shiningrise 阅读(210) 评论(0) 推荐(0) 编辑
摘要:Although it's in the Microsoft.Owin.Host.SystemWeb assembly it is an extension method in the System.Web namespace, so you need to have the reference to the former, and be using the latter. 阅读全文
posted @ 2016-06-06 16:44 shiningrise 阅读(479) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/easygame/p/4447457.html 在Code First模式下使用SQLite一直存在不能自动生成数据库的问题,使用SQL Server Compact再转换到SQLite的方式(SQL Server Compact/SQLite Tool 阅读全文
posted @ 2016-06-06 14:16 shiningrise 阅读(1494) 评论(0) 推荐(0) 编辑
摘要:public class CustomerMap : EntityTypeConfiguration { public CustomerMap() { this.Property(o => o.UserName).HasColumnAnnotation("Index", new IndexAnnotation(new IndexAt... 阅读全文
posted @ 2016-06-06 14:14 shiningrise 阅读(918) 评论(0) 推荐(0) 编辑
摘要:Introduction Websites often need to generate SEO friendly URLs. In ASP.NET Web Forms applications, a URL is tied to a physical .aspx file. This defaul 阅读全文
posted @ 2016-06-06 12:37 shiningrise 阅读(654) 评论(0) 推荐(0) 编辑
摘要:Currently, in the both the Web API and MVC frameworks, dependency injection support does not come into play until after the OWIN pipeline has started 阅读全文
posted @ 2016-06-05 21:02 shiningrise 阅读(442) 评论(0) 推荐(0) 编辑
摘要:app.Properties["Hello"] = System.DateTime.Now; app.Run(async context => await context.Response.WriteAsync(app.Properties["Hello"].ToString() + ",now=" + System.DateTime.Now.T... 阅读全文
posted @ 2016-06-05 18:29 shiningrise 阅读(174) 评论(0) 推荐(0) 编辑
摘要:public class HelloWorldOptions { public HelloWorldOptions() { IncludeTimestamp = true; Name = "World"; } public bool IncludeTimestamp ... 阅读全文
posted @ 2016-06-05 17:47 shiningrise 阅读(191) 评论(0) 推荐(0) 编辑
摘要:namespace Webform.App { public class PageBase : System.Web.UI.Page { } public interface IService : IRepository, IScopeDependency where TEntity : IEntity { } publ... 阅读全文
posted @ 2016-06-05 00:41 shiningrise 阅读(301) 评论(0) 推荐(0) 编辑
摘要:Update-Package -Reinstall Update-Package -reinstall -ProjectName Cardin.HeartCare.Service.ChatService Nuget程序包管理 —》程序包管理控制台,运行以下命令即可:Update-Package Mi 阅读全文
posted @ 2016-06-05 00:38 shiningrise 阅读(401) 评论(0) 推荐(0) 编辑
摘要:Linq 中按照多个值进行分组(GroupBy) .GroupBy(x => new { x.Age, x.Sex }) group emp by new { emp.Age, emp.Sex } into g // 实现多key分组的扩展函数版本 var sums = empList .GroupBy(x => new { x.Age, x.Sex }) ... 阅读全文
posted @ 2016-06-04 22:22 shiningrise 阅读(2760) 评论(0) 推荐(0) 编辑
摘要:必须安装 Microsoft.Owin.Host.SystemWeb 阅读全文
posted @ 2016-06-04 21:04 shiningrise 阅读(125) 评论(0) 推荐(0) 编辑
摘要:http://www.crsky.com/soft/72908.html 阅读全文
posted @ 2016-06-04 18:04 shiningrise 阅读(189) 评论(0) 推荐(0) 编辑
摘要:开始 EF6.1也出来不少日子了,6.1相比6.0有个很大的特点就是新增了System.Data.Entity.Infrastructure.Interception 命名空间,此命名空间下的对象可以允许我们更加方便的了解到EF运行时的一些信息,当然我们最想看的还是EF生成的Sql语句,话不多讲,开 阅读全文
posted @ 2016-06-04 00:03 shiningrise 阅读(1584) 评论(1) 推荐(3) 编辑
摘要:var db = this.UnitOfWork as CodeFirstDbContext; using (var tan = db.Database.BeginTransaction()) { try { ... 阅读全文
posted @ 2016-06-03 13:50 shiningrise 阅读(272) 评论(0) 推荐(0) 编辑
摘要:vs2013 支持C#6.0 Install-Package Microsoft.Net.Compilers 阅读全文
posted @ 2016-06-03 11:20 shiningrise 阅读(574) 评论(0) 推荐(0) 编辑
摘要:首先我们先创建一个txt文件,添加shutdown -r -f -t 0 ,文件点击另存为,选择所有类型,保存格式为“重启.bat”文件。 说明:shutdown命令用法: /r 关闭并重新启动计算机。 /f 强制正在运行的应用程序关闭,不前台警告用户。 当为 /t 参数指定大于 0 的值时, 则默 阅读全文
posted @ 2016-06-01 09:12 shiningrise 阅读(982) 评论(0) 推荐(0) 编辑

// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css