Skip to content

Commit

Permalink
Merge pull request #10134 from abpframework/malimintg/GetFullNameHand…
Browse files Browse the repository at this point in the history
…lingNullableAndGenerics

Use `GetFullNameHandlingNullableAndGenerics` instead of `FullName`.
  • Loading branch information
realLiangshiwei committed Sep 24, 2021
2 parents 535778a + cf4c916 commit ec74018
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected virtual ActionApiDescriptionModel FindActionApiDescriptionModel(Contro
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)
Expand Down

0 comments on commit ec74018

Please sign in to comment.