摘要:
首先了解下mvc中html链接方式: ① <a href="/home/details/@Id">查看</a> ② <a href="@Url.Action("details", "home", new { id = Id })">查看</a> ③ @Html.ActionLink("查看", "d 阅读全文
摘要:
psql是postgreSql的命令行cli,提供了一系列的数据库操作,这里重点介绍copy命令和\copy命令。 >>> copy (select * from table1) to '/tmp_data/bak.csv' with csv; 【注】运行时可能会报权限错误,因copy命令数据服务器 阅读全文
摘要:
环境描述:macOS 、vscode 、netcore3.0 迁移工具:Microsoft.EntityFrameworkCore.Tools 遇到的问题: Could not execute because the specified command or file was not found. 阅读全文