0
daws created
We are in the process of migrating aspnetzero from 12.4.2 to 13.4.0 (angular frontend)
After running swagger gen (with the provided script), some api input parameters are now checked for null before being sent to the backend :
How can we avoid this check ?
In the .net code, the parameters are already nullable :
public class AirlineInputDto
{
public string Name { get; set; }
public string? Icao { get; set; }
public string? Iata { get; set; }
}
1 Answer(s)
-
0
Hi daws
Thank you for your feedback. We created an issue for this, you can follow the changes here. Enjoy your work.