摘要: 1.创建asp.net core 2.0 Web应用程序 添加引用: Microsoft.EntityFrameworkCore.Sqlite Microsoft.EntityFrameworkCore.Sqlite.Design 2.配置Sqlite数据库 修改Startup.cs文件:servi 阅读全文
posted @ 2018-11-04 10:25 明月照归 阅读(1015) 评论(0) 推荐(0) 编辑
摘要: --删除所有约束、表、视图等SQL脚本 --############################################### --删除所有外键约束 --############################################### DECLARE @SQL VARCHAR(99) DECLARE CUR_CONSTRAINT CURSOR LOCAL FOR SEL... 阅读全文
posted @ 2018-11-04 10:22 明月照归 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1 public class Person 2 { 3 public string Name { get; set; } 4 public string Address { get; set; } 5 public int Age { get; set; } 6 } 1 $("#btnJson").on("cli... 阅读全文
posted @ 2018-11-04 10:20 明月照归 阅读(272) 评论(0) 推荐(0) 编辑
摘要: Azure Website默认时区为国际标准时间,对中国用户来说不太方便友好,如何设置成北京时间呢? 打开Azure Website的“配置”页,找到“应用设置”节点。 在应用设置中添加设置项,密钥为“WEBSITE_TIME_ZONE”,值为时区ID,比如北京时间为“China Standard 阅读全文
posted @ 2018-11-04 10:17 明月照归 阅读(265) 评论(0) 推荐(0) 编辑