09 2017 档案
摘要:using System; using System.Collections.Generic; using System.Linq; using AutoMapper; using System.Collections; namespace DanaZhangCms.Domain.AutoMapper { public static class AutoMapperExtension ...
阅读全文
摘要:EntityFramework Reverse POCO Generator https://marketplace.visualstudio.com/items?itemName=SimonHughes.EntityFrameworkReversePOCOGenerator#qna
阅读全文
摘要:// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory logge...
阅读全文
摘要:http://www.cnblogs.com/i6first/p/5123995.html
阅读全文
摘要:if object_id('tempdb..#tempTable') is not null Begin drop table #tempTable End SELECT TOP 1000 [校区],[学年],[考试年级],[考试类别],avg(语文含挑战) '平均分',STDEV(语文含挑战) '标准差' into #tempTable FROM [SchoolAnalyze].[dbo]...
阅读全文
摘要:http://www.cnblogs.com/keepfool/
阅读全文
摘要:重置 MySQL 自增列 AUTO_INCREMENT 初时值 注意, 使用以下任意方法都会将现有数据删除. 方法一: 1 2 (好处, 可以设置 AUTO_INCREMENT 为任意值开始) 提示:如果表列和数据很多, 速度会很慢, 如90多万条, 会在10分钟以上. 方法二: 1 (好处, 简单
阅读全文