摘要:
文章出处:http://www.cnblogs.com/shanyou/archive/2012/09/26/2704814.html在最近发布的Visual Studio 2012及.NET 4.5中, 微软正式推出新的网络服务框架ASP.NET Web API。作为ASP.NET MVC 4的一... 阅读全文
摘要:
EncryptConnection.EncryptConnectionString(true);public static class EncryptConnection { public static void EncryptConnectionString(bool encrypt) { Configuration configFile = null; try { // Open the configuration file and retrieve the c... 阅读全文
摘要:
1,Copy文件set source=E:\XXset target=E:\XXcopy %source%\SunAngel.ERP.KF.WCFServiceHost.exe %target% /y2,安装windows服务C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\installutil.exe E:\xx\aa.exe3, 启动停止服务net stopServiceNamenet start ServiceName 阅读全文
摘要:
前提条件:测试操作系统WIN71,解压缩镜像文件2,找到文件:Setup\setup.sdb,用记事本打开;3,找到以下项:[Product Key]XPWKC7X98VKQDGM3QWYVGFD3W 4,将:XPWKC7X98VKQDGM3QWYVGFD3W 改为可用密钥Visual Studio 2008 Professional Edition: XMQ2Y4T3V6XJ48YD3K2V6C4WT Visual Studio 2008 Team System: PYHYPWXB3BB2CCMV9DX9VDY8T保存该文件。5,重新运行安装文件 阅读全文
摘要:
public interface IGenericRepository where TEntity : class { IQueryable GetAll(); IQueryable FindBy(Expression> predicate); void Add(TEntity entity); void Delete(TEntity entity); void Edit(TEntity entity); void Save(); } public class GenericRe... 阅读全文
摘要:
1,首次访问时会自动生成数据库2,某个Model增加一个字段后,再次访问会报,数据库不是最新操作1,Enable-Migrations 注意选择Default project为Star.Core(StarObjectContext : DbContext所在的工程) 会生成两个文件Configuration.cs 和201306231546579_InitialCreate.cs2,add-migrationAddSize(文件名) 生成201306231550012_AddSize.cs文件3,update-database 阅读全文
摘要:
写了一个用户控件,包括一个Label和Textbox。运行时,当选中该用户控件后,在Form上发现无法触发Keydown事件。原因应该是该用户控件接收到了Keydown事件后,并没有把它再传给它Form.解决办法:设置Form.KeyPreview = true;该参数将使Form在获得焦点的子控件之前接收到键盘事件。 阅读全文
摘要:
public class Father { public void Write() { Console.WriteLine("父"); } } public class Mother { public virtual void Write() { Console.WriteLine("母"); } } public class Boy : Father { public new void Write() { ... 阅读全文