不能使用Swashbuckle.AspNetCore.Swagger库

xzlaal3s  于 2023-11-18  发布在  其他
关注(0)|答案(1)|浏览(154)

当尝试实现Swashbuckle.AspNetCore.Swagger库时,在使用“Operation”时出现错误"Error CS0246 The type or namespace name 'Operation' could not be found(are you missing a using directive or an assembly reference?)”
我用的是.net 5
Codelibrary implement的数据库
我怎么能解决这个问题,因为库已经安装

de90aj5v

de90aj5v1#

你应该像这样用OpenApiOperation替换Operation类:

public void Apply(OpenApiOperation operation, OperationFilterContext context)

字符串

相关问题