摘要: /// <summary> /// WebApi全局设置 /// </summary> public class WebApiApplication : System.Web.HttpApplication { /// <summary> /// 第一个访问网站的用户会触发该方法. 通常会在该方法里 阅读全文
posted @ 2020-05-17 11:23 2020日积月累 阅读(312) 评论(0) 推荐(0)
摘要: HTTP 错误 405.0 - Method Not Allowed无法显示您正在查找的页面,因为使用了无效方法(HTTP 谓词)。模块 WebDAVModule 通知 MapRequestHandler 处理程序 ExtensionlessUrlHandler-Integrated-4.0 错误代 阅读全文
posted @ 2020-05-14 17:10 2020日积月累 阅读(466) 评论(0) 推荐(0)
摘要: ServiceController service = new ServiceController("wwService");protected void btnRestart_Click(object sender, EventArgs e) { try { if (service.Status  阅读全文
posted @ 2020-04-23 16:12 2020日积月累 阅读(676) 评论(0) 推荐(0)
摘要: 生成Migration脚本 add-migration 名称 生成数据库脚本 Update-Database -Script -SourceMigration: 上个migration -TargetMigration:截至migration 阅读全文
posted @ 2020-03-20 20:32 2020日积月累 阅读(102) 评论(0) 推荐(0)