03 2013 档案

摘要:Lambda表达式 c# 经验谈:巧用Expression表达式 解决类似于sql中 select in 的查询(适合于中小型项目) 使用Expression进行查询拼接 linq实现And或Or的拼接的动态查询方式 EntityFramework4.5使用Expression类创建动态查询及动态查询导航属性 http://www.albahari.com/nutshell/linqkit.aspxDynamically Composing Expression PredicatesLINQ那些事儿(5)- 动态查询http://msdn.microsoft.com/zh-cn/librar. 阅读全文
posted @ 2013-03-28 15:28 shiningrise 阅读(2879) 评论(0) 推荐(1) 编辑
摘要:http://code.google.com/p/boomworks/wiki/BoomWorksHomepageCNhttp://code.google.com/p/boomworks/wiki/SourceCounterCN 阅读全文
posted @ 2013-03-27 22:41 shiningrise 阅读(1408) 评论(0) 推荐(0) 编辑
摘要:http://yuxnet.blog.163.com/blog/static/16486349520116214530729/using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.U 阅读全文
posted @ 2013-03-27 13:54 shiningrise 阅读(1132) 评论(0) 推荐(0) 编辑
摘要:http://markdownpad.com/download.html 阅读全文
posted @ 2013-03-27 09:21 shiningrise 阅读(357) 评论(0) 推荐(0) 编辑
摘要:http://runtool.blog.163.com/blog/static/18314444520130622058448/MARKDOWN简介Markdown是一种轻量级的标记语言,由John Gruber和Aaron Swartz创建。它的灵感来自于带标记的电子邮件文本。Markdown允许HTML语法,所以在markdown文件里面直接使用html表示也是可以的。MARKDOWN的优点Markdown能让文档更容易读、写和修改。HTML是一种发布式的格式,Markdown是一种书写的格式。Markdown只涵盖纯文本的范围。在博客中使用Markdown可以更多的关注于文章的内容,少量 阅读全文
posted @ 2013-03-27 09:20 shiningrise 阅读(1133) 评论(0) 推荐(0) 编辑
摘要:默认的LOG界面让人看着很不爽,那么怎样来配置一下LOG的显示?从网上找到下面的命令可以满足我们的需求:1git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'--abbrev-commit直接在终端运行一下可以看到效果每次输入都很麻烦吧,那么为了一劳永逸,我们来配置一下:1.打开gitconfig文件1open.gitconfig2.配置gitconfig在打开的文件中加入下面的命令:view so 阅读全文
posted @ 2013-03-26 23:59 shiningrise 阅读(489) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/pukuimin1226/article/details/7841741 using System; using System.Collections.Generic; using System.Text; using System.IO; namespace Tools { /// <summary> /// 使用ILmerge合并Exe、Dll文件的帮助类 /// </summary> public class... 阅读全文
posted @ 2013-03-13 21:07 shiningrise 阅读(236) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/huangcong/archive/2010/03/28/1698973.html.先到http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&displaylang=en下载ILMerge,才600多K,一下子就下好了 阅读全文
posted @ 2013-03-13 20:32 shiningrise 阅读(181) 评论(0) 推荐(0) 编辑
摘要:http://code.google.com/p/nant-googlecode/source/checkout 阅读全文
posted @ 2013-03-13 16:58 shiningrise 阅读(213) 评论(0) 推荐(0) 编辑
摘要:另有文:终于解决“Git Windows客户端保存用户名与密码”的问题http://www.cnblogs.com/dudu/archive/2011/07/06/git_save_username_password.html在Push代码的时候每次都输入用户名和密码很麻烦,尤其是自己也记不住密码的时候。Google Code有教怎么设置:Add the following to your .netrc. machine code.google.com login XXX@gmail.com password XXX Make sure the clone URL doesn't co 阅读全文
posted @ 2013-03-13 15:48 shiningrise 阅读(3682) 评论(1) 推荐(1) 编辑
摘要:一不小心把本地的临时分支push到server上去了,想要删除。一开始用git branch -r -d origin/branch-name不成功,发现只是删除的本地对该远程分支的track,正确的方法应该是这样:git push origin :branch-name冒号前面的空格不能少,原理是把一个空分支push到server上,相当于删除该分支。 阅读全文
posted @ 2013-03-12 23:22 shiningrise 阅读(76577) 评论(5) 推荐(16) 编辑
摘要:http://www.sharewareconnection.com/dhcpd-tools.htm 阅读全文
posted @ 2013-03-11 18:37 shiningrise 阅读(560) 评论(0) 推荐(0) 编辑
摘要:程序下载:http://code.google.com/p/midexam/ 阅读全文
posted @ 2013-03-10 19:11 shiningrise 阅读(323) 评论(0) 推荐(0) 编辑
摘要:vs2010 命令行下用 msbuild 发布web站点先来看一下原来 vs2008 的代码msbuild website\websiteApp.csproj /t:ResolveReferences;Compile /t:_CopyWebApplication /p:Configuration=Release /p:WebProjectOutputDir=r:\website /p:OutputPath=r:\website\bin再看看 vs2010 的代码path C:\Windows\Microsoft.NET\Framework\v4.0.30319msbuild website\w 阅读全文
posted @ 2013-03-09 19:51 shiningrise 阅读(1384) 评论(0) 推荐(1) 编辑
摘要:<PropertyGroup> <PostBuildEvent> if "$(ConfigurationName)" == "Release" goto Release goto End :Release copy *.* ..\..\..\..\Release\ :End </PostBuildEvent> </PropertyGroup> 阅读全文
posted @ 2013-03-09 19:42 shiningrise 阅读(251) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/wwlearn/article/details/5457310<authorization><denyusers="?"/><allowusers="*"/></authorization>?:匿名用户,也就是没有登入的用户不能访问。*:所有用户,所有用户都不能访问。<denyusers="?"/>、是拒绝匿名用户访问<allowusers="*"/>允许所有的用户访问包括匿名用户<authent 阅读全文
posted @ 2013-03-09 18:10 shiningrise 阅读(888) 评论(0) 推荐(0) 编辑
摘要:Using Fluent NHibernate in Spring.Nethttp://blog.bennymichielsen.be/2009/01/04/using-fluent-nhibernate-in-spring-net/protectedoverridevoidPostProcessConfiguration(Configurationconfig){base.PostProcessConfiguration(config);Fluently.Configure(config).Database(MySQLConfiguration.Standard.ConnectionStri 阅读全文
posted @ 2013-03-06 19:07 shiningrise 阅读(1306) 评论(0) 推荐(0) 编辑
摘要:vs扩展:http://visualstudiogallery.msdn.microsoft.com/63a7e40d-4d71-4fbb-a23b-d262124b8f4chttp://code.google.com/p/gitextensions/https://www.gitshell.com/http://www.gitcafe.com/http://gitcd.com 阅读全文
posted @ 2013-03-05 22:31 shiningrise 阅读(980) 评论(0) 推荐(0) 编辑

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