Browse Source
Merge pull request #10134 from abpframework/malimintg/GetFullNameHandlingNullableAndGenerics
Use `GetFullNameHandlingNullableAndGenerics` instead of `FullName`.
pull/10135/head
liangshiwei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Swashbuckle/Volo/Abp/Swashbuckle/Conventions/AbpSwaggerClientProxyServiceConvention.cs
|
|
|
@ -217,7 +217,7 @@ namespace Volo.Abp.Swashbuckle.Conventions |
|
|
|
var key = |
|
|
|
$"{appServiceType.FullName}." + |
|
|
|
$"{action.ActionMethod.Name}." + |
|
|
|
$"{string.Join("-", action.Parameters.Select(x => x.ParameterType.FullName))}"; |
|
|
|
$"{string.Join("-", action.Parameters.Select(x => TypeHelper.GetFullNameHandlingNullableAndGenerics(x.ParameterType)))}"; |
|
|
|
|
|
|
|
var actionApiDescriptionModel = ClientProxyApiDescriptionFinder.FindAction(key); |
|
|
|
if (actionApiDescriptionModel == null) |
|
|
|
|