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

回答被采纳 30 EF Core: LINQ GroupBy ToDictionaryAsync 问题

下面的 LINQ 查询生成的 SQL 语句会 SELECT 两张表的所有字段,期望的是只 SELECT PostId 与 Tag.Name 对应的字段,请问如何实现? var dict = await
1
回答数

回答被采纳 20 求C#实现JAVA中SHA1withECDSA数字签名

Java代码如下 //密钥 String key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; byte[] keyByte = Base64.
1
回答数

回答被采纳 5 XML与DataSet的互转的xml格式

<?xml version="1.0" standalone="yes"?> <NewDataSet> <xs:schema id="NewDataSet" xmlns="" xmlns:xs="ht
3
回答数

回答被采纳 5 netcore通过请求的接口模拟相同的httpclient接口

各位大佬,新年好。 我有a,b,c三个系统,分开三个域名绑定的,这三个系统分别有各自的api接口。现在我有一个main系统,这个系统不做其他的,相当于一个中继系统,他接收小程序调用,然后去调用相应a,
1
回答数

回答被采纳 30 不用 try...catch ,如果处理启动过程在 Program.cs 中发生的异常

Program.cs 中有很多代码,如果为了处理异常将一堆代码包裹在 try...catch 中不美观,有没有什么办法在不加 try...catch 的情况下处理异常?
2
回答数

回答被采纳 50 C#: 接口继承的依赖注入问题

想把一个已有接口 IZzkDocService public interface IZzkDocService { Task<SearchResult> SearchAsync(string appN
1
回答数

回答被采纳 30 code style: file scoped namespace 之后缺少空行的问题

在 .editorconfig 中添加 csharp_style_namespace_declarations 配置后(详见之前的博问),VS 2022 新建的 class 会默认使用 file sc
1
回答数

回答被采纳 30 如何让 VS 2022 新建的 class 默认使用 file scoped namespace

在 Visual Studio 2022 中新建类时如何默认就使用 file scoped namespace?
1
回答数

回答被采纳 10 如何对dynamic中的一个属性进行修改

dynamic item = new { code = "111", name = "大熊" }; 如上直接定义了,不遍历的情况下怎么去修改name属性值
1
回答数

回答被采纳 30 .NET: 如何基于 WebApplication 创建 WebHostBuilder 给 TestServer 使用

想在测试用例中不使用 WebApplicationFactory,直接使用 TestServer,TestServer 的构造函数需要传参 IWebHostBuilder 的实例, 如果能通过 Web
1
回答数

回答被采纳 30 .NET: 如何检查一个接口是否已经在DI容器中注册过

想在 IEndpointRouteBuilder 的扩展方法中检查 IEventBus 接口(Interface) 是否已经注册过,请问如何实现? 尝试下面的代码,却发现即使没有注册,eventBus
1
回答数

回答被采纳 50 C# Newtonsoft反序列化

使用Newtonsoft反序列化时,当我的字符串内容和实体类不一致时,怎么进行判断呢,Newtonsoft在反序列化时不会进行报错,只有字符串内容不符合Json格式才会报错,我想要在字符串内容符合字符
1
回答数

回答被采纳 30 ASP.NET Core: 如何通过 Request.BodyReader 读取 request body 的内容

今天在排查 web api 问题时需要输出 request body 的内容看一下,之前都是通使用 Request.Body ,今天想试试 Request.BodyReader,它的类型是 PipeR
1
回答数

回答被采纳 30 集成测试中如何让 Refit 使用 WebApplicationFactory 创建的 HttpClient

我们当前使用 HttpClientFactory 方式创建 Refit 所需要的 HttpClient services.AddRefitClient<IBlogPostClient>() .Conf
1
回答数

回答被采纳 50 PHP8.18使用PHPExcel报错During inheritance of Iterator: Uncaught think\exception\ErrorException:

During inheritance of Iterator: Uncaught think\exception\ErrorException: Return type of PHPExcel_Wor
1
回答数

回答被采纳 30 Kubernetes: 如何用命令查看当前使用的 namespace

如题,如何用 kubectl 命令查看查看当前使用的命名空间?
1
回答数

回答被采纳 30 Kubernetes: helm 部署应用时出现 Unauthorized 错误

通过 helm 向 k8s 集群部署应用时出现下面的错误,请问如何解决? error: You must be logged in to the server (Unauthorized) Error
1
回答数

回答被采纳 makefile 怎么执行bashrc 中自定义命令?

set_title 为bashrc 中自定义函数。
1
回答数

回答被采纳 50 C#: 当 web api dns 解析失败时 Refit 会出现 NullReferenceException

当所请求的 web api 遭遇 dns 解析失败 Name or service not know,refit 就投降了,直接抛 null 引用异常 System.NullReferenceExce
1
回答数

回答被采纳 100 gitlab-runner无法clone

gitlab pages + hexo template + gitlab-runner 一直卡在这,没有拉取到库到runner本地服务器 win10 环境安装的gitlab runner 库使用的官
2
回答数

回答被采纳 50 C#: 如何从 Refit 的注解(annotation) 中获取请求路径

Refit 是一个 REST 库 ,可以根据 annotation 自动生成 HttpClient 请求代码 https://github.com/reactiveui/refit 想从 annota
1
回答数

回答被采纳 30 C#/.NET: 求 mock HttpClient 的好姿势

想在测试中 mock HttpClient,请问有什么以假乱真的好姿势?
2
回答数

回答被采纳 40 Asp.Net Core 5.0 部署到 Docker

根据微软官方教程(https://learn.microsoft.com/zh-cn/aspnet/core/host-and-deploy/docker/building-net-docker-im
1
回答数

回答被采纳 30 C#: 如何创建忽略大小写的 key 类型为 char 的 Dictionary

如果是 string 类型的 key,可以使用 StringComparer.OrdinalIgnoreCase var dict = new Dictionary<string, TrieNode>
1
回答数

回答被采纳 30 运行 dotnet test 命令时如何在控制台输出 Debug.WriteLine

想在运行 dotnet test 命令时在控制台输出代码中 Debug.WriteLine 打印的内容,请问如何实现?测试组件用的是 xUnit.net