摘要: 参考: https://aspnetboilerplate.com/Pages/Articles/Introduction-With-AspNet-Core-And-Entity-Framework-Core-Part-1/index.html#ArticleAddTaskToDbContext 阅读全文
posted @ 2019-03-12 16:17 lishidefengchen 阅读(661) 评论(0) 推荐(0)
摘要: 安装Resharper 添加nunit.framework 测试代码 阅读全文
posted @ 2019-03-12 13:44 lishidefengchen 阅读(281) 评论(0) 推荐(0)
摘要: 参考: https://www.jianshu.com/p/a6e9ace79345 阅读全文
posted @ 2019-03-12 11:03 lishidefengchen 阅读(202) 评论(0) 推荐(0)
摘要: 远程登陆MySQL,同时指定对应的端口和ip。 假设远程的ip为:10.154.0.43 端口为:1341 输入如下命令: mysql -h 10.154.0.43 -P 1341 -u root -p 回车 输入密码 阅读全文
posted @ 2019-03-12 10:50 lishidefengchen 阅读(268) 评论(0) 推荐(0)
摘要: Problem: sql server 2012 安装完毕后,连接数据库只能使用 机器名\数据库实例 的方式,想用 localhost 或 . 作为服务器名称不可以 Solution: 参考:https://blog.csdn.net/qq_26545305/article/details/5074 阅读全文
posted @ 2019-03-12 10:05 lishidefengchen 阅读(2868) 评论(0) 推荐(1)
摘要: Solution: 1、在mysql服务器上用命令行连接mysql 2、执行如下命令: a、use mysql; b、alter user 'root'@'localhost' identified with mysql_native_password by '********'; // '**** 阅读全文
posted @ 2019-03-12 09:42 lishidefengchen 阅读(253) 评论(0) 推荐(0)