Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

boomin-engineering/http-patch

Open more actions menu

Repository files navigation

HttpPatch

Helpers for a simple HttpPatch using a simple model

If a property is present in the json it will be patched (even to null)

Commit NuGet version (HttpPatch)

Examples

  • Patch Name to "Bob" and description (a nullable property of the resource) to null
{
  "name": "Bob",
  "description": null
}
  • Patch Name to "Bob" and description to "The best Bobertson"
{
  "name": "Bob", 
  "description": "The best Bobertson"
}
  • Patch Name to "Bob" and do not change the description
{
  "name": "Bob"
}

Adding To A Project

Simply use the OptionallyPatched<T> class in your patch requests!

What about validation?

The DataAnnotation attributes will not work "through" the OptionallyPatched<T> class, however there is a workaround for this

A helper base record called BasePatchRequest will pass some attributes down to the underlying value when validating, if it is included in the patch

public record TestResourcePatchRequest(
    [RequiredIfPatched]
    [MinLengthIfPatched(2)]
    OptionallyPatched<string> Name
) : BasePatchRequest

Note that these wrappers RequiredIfPatched are not the actual data annotation attributes but do map 1:1, if you need one that is missing, feel free to add them :)

What about custom serialization?

JsonConverter attributes on the OptionallyPatched property will not work either, if you need custom serialization of an underlying value, either load the converters globally or place them on the underlying type

Example:

[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))]
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum ResourceState
{
    Unpublished,
    Published
}

They will work as normal on nested properties, just not the top level OptionallyPatched<T> item

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published
Morty Proxy This is a proxified and sanitized view of the page, visit original site.