British-Systems / MultiPlug

MultiPlug .Net Edge Computing Platform
https://www.multiplug.app
1 stars 0 forks source link

Handle nullable number types in a Get/Post Model or as the parameter list #64

Open British-Systems opened 8 months ago

British-Systems commented 8 months ago

image

Workaround

Set the value as a string in the model and use TryParse

if (int.TryParse(theStringValue, out NumberValue))
{

}