📜  相同的 schemaid 已用于类型 swagger - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:54.553000             🧑  作者: Mango

代码示例1
services.ConfigureSwaggerGen(options =>
   {
       //your custom configuration goes here
       // UseFullTypeNameInSchemaIds replacement for .NET Core
       options.CustomSchemaIds(x => x.FullName);
   });