首页 新闻 会员 周边 捐助
2
回答数

回答被采纳 50 C#的Windows系统添加右键菜单

想用C#实现一个WinRAR类似的Windows系统右键菜单项啊。。。请给出源码(包括添加菜单项和删除菜单项,,以及将右键选择的文件传给程序) 需要兼容Windows 10及Windows 11 。。
1
回答数

回答被采纳 30 Microsoft.Extensions.ApiDescription.Server 出现 "Could not load type" 问题

将一个 ASP.NET Core 项目升级到 .NET 8 并且更新所有 nuget 包之后 build 时出现下面的错误: C:\Users\Administrator\.nuget\package
1
回答数

回答被采纳 30 ASP.NET Core 中生成 sitemap 那个开源库好用

目前找到了2个开源库: X.Web.Sitemap github: https://github.com/ernado-x/X.Web.Sitemap nuget: https://www.nuget
1
回答数

回答被采纳 30 ASP.NET Core Minimal API 如何通过 Response.Body 以 Stream 响应 xml 内容

问题如题,应用场景是生成网站的 sitemap,请问如何实现?
1
回答数

回答被采纳 30 .NET: 使用 AddDbContextPool 遇到错误 "Cannot consume scoped service"

注册 EF Core 的 DbContext 时将 AddDbContext 改为 AddDbContextPool 后集成测试出现下面的错误: System.AggregateException :
1
回答数

回答被采纳 30 .NET: 如何通过数据库连接字符串设置 SqlCommand.CommandTimeout

请问通过 SqlClient 的 connection string 设置 SqlCommand.CommandTimeout 的超时时间?
1
回答数

回答被采纳 30 .NET: LINQ 如何通过参数传入 OrderBy

下面的 C# 代码中想通过方法参数传入 OrderBy,请问如何实现? public async Task<List<T>> GetBlogSites<T>( int pageIndex, int p
1
回答数

回答被采纳 30 Moq 如何针对可选参数 mock 以及如何直接返回传入的参数值

今天在测试中需要用 Mock 对下面的接口进行 mock public interface IMarkdownClient { Task<string> RenderAsync(string text
1
回答数

回答被采纳 30 .NET: 如何让 AutoFixture 在生成字段值时将 int 类型字段都设置为 0

场景是生成的对象需要添加到 EF Core 的 DbContext,如果主键字段被生成时自动赋值,SaveChanges 时就会出现下面这样的错误 The instance of entity typ
1
回答数

回答被采纳 30 .NET 集成测试中哪个 fake data generator 更好用

目前发现2个: AutoBogus: https://github.com/nickdodd79/AutoBogus AutoFixture: https://github.com/AutoFixtu
1
回答数

回答被采纳 30 gitlab 升级到 16.8 后 gitlab-ci 无法正常工作

今天将 gitlab 升级到 16.8 后,所有的 pipeline 都处于 pending 状态,查看 pipeline 中的 job,显示的是下面的内容: This job has not bee
1
回答数

回答被采纳 30 C# 模式匹配时如何忽略大小写

下面的代码使用了 C# 的模式匹配(pattern matching),请问在匹配 [markdown] 时如何忽略大小写? postEditDto.IsMarkdown = inputCategor
1
回答数

回答被采纳 30 .NET: Dapper ReadAsync 时出现错误 "Sequence contains no elements"

下面的 C# 代码中使用了 Dapper 的 ReadAsync entryList.Entries = (await result.ReadAsync<BlogEntry>()).ToList();
1
回答数

回答被采纳 10 C# 正则表达时匹配多行 html tag 时的贪婪匹配问题

比如这样的 html table 代码 <table> <tr> <td>test1</td> <td>test2</td> <td>test3</td> <td>test4</td> </tr> <
1
回答数

回答被采纳 30 C# 代码中使用 primary constructor 出现编译 warning CS9124

warning 出现于下面的 = slug; 处,请问如何解决? public class BlogPostUrlBuilder(string slug) { private readonly str
2
回答数

回答被采纳 30 升级到 .NET 8 后日志中出现 HTTP_PORTS 与 HTTPS_PORTS 相关的警告

ASP.NET Core 项目升级到 .NET 8 之后,日志中出现下面的警告: Overriding HTTP_PORTS '"80"' and HTTPS_PORTS '""'. Binding
1
回答数

回答被采纳 30 .NET: 如何引用另一个项目中的 Resources

在 web 项目中添加了国际化的资源文件 在当前项目中可以通过 Resources 直接调用 errorMessage = Resources.SharedMessages.Validators_Sh
1
回答数

回答被采纳 30 ASP.NET Core: TemplateMatcher 匹配时会忽略类型约束(type contraint)

在使用 TemplateMatcher 解决如何通过手动档实现 route template 匹配字符串的问题后发现一个新问题,如果 route template 中包含类型约束(即inline co
1
回答数

回答被采纳 30 ASP.NET Core 路由模板包含连字符的问题

下面的 ASP.NET Core 路由模板(route template)中这样包含 - 连字符(hyphen) [Route("/{blogApp}/{postType}/-/{**slug}")]
2
回答数

回答被采纳 30 开头字符是 "~" 的 EF Core LINQ 查询问题

数据库中字段值是 ~hello-world(开头字符是波浪号tilde),通过 SQL 语句 and EntryName='~hello-world' 可以正常查询,通过 EF Core LINQ .
2
回答数

回答被采纳 30 ASP.NET Core Web Api压测,性能不行的原因是什么

创建一个Web Api项目,使用Jmeter配置1000线程进行压测,性能不佳。请教下,各位大佬,是否还需要进行哪些配置 主机配置: 注册表配置: 聚合报告:
2
回答数

回答被采纳 30 ASP.NET Core: 如何通过手动档实现 route template 匹配字符串

实际需求场景是通过博文 url 获取对应的博文,现在已知多个 route template public static class RouteTemplates { public const stri
1
回答数

回答被采纳 30 .NET 7 升级至 .NET 8 遇到问题 "Failed to create CoreCLR, HRESULT: 0x80070008"

园子的文件上传项目从 .NET 7 升级至 .NET 8 后容器启动时出现下面的错误 Failed to create CoreCLR, HRESULT: 0x80070008 请问如何解决?
2
回答数

回答被采纳 30 升级到 .NET 8 遇到问题:" IDX10720: Unable to create KeyedHashAlgorithm for algorithm 'HS256'"

下面的代码在 .NET 7 中正常 var token = handler.CreateEncodedJwt(configToken(new SecurityTokenDescriptor { Iss
1
回答数

回答被采纳 30 如何通过 editorconfig 消除 'Use "Async" suffix in names of methods that return an awaitable type'

不管在 visual studio 还是在 vscode 中,如果 async 异步方法名没有以 Async 结尾,都会出现代码风格警告: Use "Async" suffix in names of