You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you are trying to PATCH a model with nullable attributes, it does not work.
Model example:
publicclassTodoItem:Identifiable{Attr("description")]
public stringDescription{get;set;}[Attr("created-date")]publicDateTimeCreatedDate{get;set;}[Attr("achieved-date")]publicDateTime?AchievedDate{get;set;}}
Hi,
Thanks for this great library!
When you are trying to PATCH a model with nullable attributes, it does not work.
Model example:
1st PATCH Request example: Field is not sent
PATCH http://localhost:5000/api/todoitem/1
2nd PATCH Request example: Field is sent
PATCH http://localhost:5000/api/todoitem/1
Actual behavior: Exception is returned from the API.
Expected behavior:
Gerfaut
The text was updated successfully, but these errors were encountered: