首页
新闻
会员
周边
捐助
园子
·
关注
·
粉丝
·
会员
·
随便看看
·
消息
欢迎,请先
登录
或者
注册
。
登录
/
注册
闪存
博客
发言
小组
投递
新闻
提问
博问
添加
收藏
文库
问题反馈
问题列表
我关注的
我的博问
博问标签
提问
回答
被采纳
1
回答数
30
升级到 EF Core 7.0 后运行时报错 "Method not found"
EF Core 升级到 7.0 后运行时报错,报错信息如下: System.MissingMethodException : Method not found: 'System.Collections
1
回答数
WINFORM程序运行后,控件AxBARCODELib.AxBarCodeCtrl报错没有注册类
3
回答数
100
获取数字证书
我写了一个web api(Asp.net core)并将它部署到了IIS上,然后为它安装了一个自签名的数字证书。现在我需要在unity客户端中获取数字证书并获取里面的公钥,请问我该如何实现。
1
回答数
20
net core 3.1 webapi
发送一个post请求 http://localhost:5000/WeatherForecast/ 为何状态码是405?
1
回答数
20
GitHub Desktop怎么用
GitHub Desktop怎么用???在网上找了很多,和我的界面怎么不一样???
1
回答数
20
使用.net 7 sdk, 6.0的项目没有升级框架的情况下运行dotnet watch run 异常
<TargetFramework>net6.0</TargetFramework> 这个是6.0的项目文件的配置,安装7.0 sdk后直接运行dotnet watch run会报错 改成<Target
1
回答数
5
.net中文编码小问题求助
页面提交得时候经常出现一些特殊符号,例如?问号(英文版得问号) 后台提交得时候进行了编码:System.Web.HttpUtility.UrlEncode(Key) 编码后得结果从百度得解码器解码正常
2
回答数
10
求C#大佬指导一下,为什么使用Contians,返回值老是false
string[] Strarr = NBber.Split('\n'); //获取本地字符串数组 string Snb = txtNumber.Text.Trim(); string[] Stt =
1
回答数
C++里有没有类似于 java中BigInteger类作用的函数
C++里有没有类似于 java中BigInteger类作用的函数 ? 写高精度太麻烦~~~
1
回答数
30
IdentityServer4 作为 GitLab OAuth 2.0 Provider 遇到问题
参考 Generic OAuth 2.0 provider 将 IdentityServer4 配置为 GitLab 的 OAuth 2.0 Provider 以实现 SSO,但登录时 Identit
1
回答数
30
IdentityServer4 遇到问题 "Scope email not found in store"
使用 IdentityServer4 作为 gitlab 的 OAuth 2.0 provider,请求的 scope 中包含 email,IdentityServer4 报错 "Scope emai
2
回答数
20
使用MemoryMappedViewAccessor出的问题还请大佬帮忙看看
我的结构体有数组,使用CreateViewAccessor这个方法会报错 "指定的类型必须是不包含引用的结构" 我该怎么解决这个问题呢? 这是我声明的结构体 报错
1
回答数
30
GitLab SSO 登录问题:"Signing in using your Cnblogs account without a pre-existing GitLab account is not allowed"
参考 Generic OAuth 2.0 provider 将 IdentityServer4 配置为 GitLab 的 OAuth 2.0 Provider,将 GitLab 已有账号关联到 Ide
1
回答数
30
IdentityServer4 验证 Personal Access Tokens (PAT) 的问题
通过 Personal Access Tokens 访问受保护的 web api 时,出现下面的报错 System.InvalidOperationException: You must either
1
回答数
30
如何启用 GitHub Actions 执行 CI
在 github 上提交 PR 后,GitHub Actions 没有执行 CI,仓库是 fork 过来的 Continuous integration has not been set up Git
1
回答数
30
没加 await 调用 async 方法遇到问题:"Cannot access a disposed object. Object name: 'IServiceProvider'"
异步方法所在的类的构造函数注入了 IServiceProvider,通过它解析实例 await using var scoped = _scopeFactory.CreateAsyncScope();
1
回答数
30
EF Core Warning: "Consider using the nullable 'bool?' type instead"
日志中发现下面的 EF Core 告警: The 'bool' property '"IsDeleted"' on entity type '"EntityA"' is configured with
1
回答数
30
GitLab 如何实现处于草稿状态的 Merge Requests 不触发 CI pipeline
如题,如何让 Draft MRs 不触发 CI pipeline?
1
回答数
50
关于 ASP.NET Core Controller 的一个线程安全问题
请问下面的代码中 _blogId 成员变量是否存在线程安全问题? public class VersioningController : Controller { private int? _blog
3
回答数
100
如何让 Visual Studio 2022 在格式化时不在 using namespace 之前加空行
VS 2022 现在每次格式化代码时都会在不同一级名称的命名空间之间加入空行,请问如何取消这种 code style?
1
回答数
30
gitlab-ci cache 无法正常工作
在一个 job 中产生的 cache 文件,在另外一个 job 中却读取不到。 执行 job 的控制台日志已经显示成功创建 cache Creating cache npm-11... src/Cli
1
回答数
50
ASP.NET Core 集成测试运行时找不到 appsettings.shared.json
appsettings.shared.json 文件放在 Cnblogs.Bootstrapper 项目中,Cnblogs.Web 引用了 Cnblogs.Bootstrapper 项目,dotnet
3
回答数
5
netcore 中如何判断类是否继承某泛型类
public class b1<T>:b1<T,string> { } public class b1<T1, T2>:b1<T1,T2,int> { } public class b1<T1, T2
2
回答数
AllowAnonymous无效
项目为.net6,使用jwt做的认证,有一个接口不想做授权就添加了,AllowAnonymous但是无效,禁用了EnableEndpointRouting也不行 .AddMvcOptions(opti
3
回答数
5
postman中已调通,.net 中HttpClient增加Authorization无法验证通过
如题,postman中已调通,.net 中HttpClient增加Authorization无法验证通过,请问各位大佬 这个位置如何解决,跪谢 postman参数 方式1 方式2 方式2报错
< Prev
1
···
20
21
22
23
24
25
26
27
28
29
30
···
200
Next >
dudu
园豆:28656
排名:6
博问搜索
关于博问
»
博问帮助
»
发现问题
»
我有建议