给表加备注

浪淘沙2年前601
EXEC sys.sp_addextendedproperty @name=N'MS_Description',@level1type=N'TABLE...

ubuntu 删除asp.net core 8.0

浪淘沙2年前446
1. 查找已安装的 ASP.NET Core 8.0 版本dotnet --list-runtimes dotnet --list-sdks2. 删除 ASP.NET Core...

查看ubuntu 是否正确安装asp.net core 8.0

浪淘沙2年前400
dotnet --list-sdks...

asp.net core webapi 调用furion 的webapi json接口

浪淘沙2年前406
/// <summary> /// 根据学校读取支付科次 /// </summary> /// <returns>&l...

asp.net core指定运行端口 如:http://localhost:5002

浪淘沙2年前434
网站根目录新建:hosting.json输入:{   "urls": "http://localhost:5002" }...

asp.net core上传git去排bin

浪淘沙2年前469
asp.net core上传git去排bin
...

asp.net core razor .cshtml.cs 如何改变写入中文后变成ANSI格式为utf-8

浪淘沙2年前501
根目录下,添加.editorconfig并写入[*.cshtml.cs] charset = utf-8已生成的文件另存为 utf-8格式...

linux asp.net core sb.AppendLine 乱码

浪淘沙2年前464
1、检查系统默认编码:locale显示:LANG=zh_CN.UTF-8  LANGUAGE=   LC_CTYPE="zh_CN.UTF-8"&...

ubuntu 验证码 无法加载问题 gdiplus错误

浪淘沙2年前512
Internal Server: Unable to load shared library 'gdiplus'&...

sqlserver 删除数据,并且序号恢复从1开始

浪淘沙2年前531
delete from article_author;dbcc checkident('article_author',reseed,0)...