摘要:
这个里Areas/**/Views会有bug。不能自动copy。 改成 "Areas/**/*.cshtml" 即可。 阅读全文
摘要:
EF Core 1.0 在sqlserver2008分页的时候需要指定用数字分页。 EF Core1.0 生成的分页语句中使用了 Featch Next。这个语句只有在SqlServer2012的时候才能使用。 所以修改如下配置,让EF Core 1.0使用传统分页。 services.AddEnt 阅读全文
摘要:
net core 对控制台中文的支持需要加入下面的语句 Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); 阅读全文
摘要:
Evolution项目是基于NFine修改的项目 主要改动为: 阅读全文
摘要:
1.加入Project对象模型 2.将Project关联到Story 3.添加projectcontroller 遇到个bug: 这是由于系统生成的代码不能识别外键字段长度导致。 fix it 启动。一切正常 4. 下面来修改 Create New 删除 创建时间和更新时间,改由服务器赋值。 det 阅读全文
摘要:
ScrumBasic 是本人基于Asp.net mvc6 最新的core 1.0写的一个敏捷项目管理软件。 目前只是一个基础版本的功能。只支持1个project。 后期会在这个基础上做扩展和权限管理。 自己顺便也整理强化一下asp.net core的使用方法。 地址:git@github.com:C 阅读全文
摘要:
This content cannot be displayed in a frame<remove name="X-Frame-Options" />加入<WebPartPages:AllowFraming ID="AllowFraming" runat="server" /> 阅读全文
摘要:
Basic Authentication on a WCF REST ServiceByPatrick Kalkman,28 Feb 20114.90(36 votes)Download source code (VS2010) - 240 KBContentsIntroductionBasic AuthenticationExtendingWCFRESTFinding the extension point, RequestInterceptorLinking the custom RequestInterceptor to the serviceCustom authentication 阅读全文