JsonApiNet
JsonApiNet copied to clipboard
An easy-to-use, extensible C# library for JSON API documents.
how to map "name" complex type in attributes with my own class **class** `public class SubscriptionType { public string Id { get; set; } public string BusinessModelType { get; set;...
I have `Foo` which has a relationship of several `Boo`, but `Boo` also has a relationship with `Foo`. This creates a stack overflow due to infinite recursion. Is there a...
Imagine a simple relationship where a `Foo` has a `Boo`: ``` "data": [ { "id": "1", "type": "foos", "relationships": { "bar" : { data: { "type": "bars", "id": "1" }...
Is it possible to make this package compatible for ASP.Net core (1.1)?
Please convert project to PCL type for Xamarin used.
I love your library, I like how type and property resolvers work, especially since I don't like using attributes on POCO. Any example how to serialize a resource object? You...
Hi, I'm using JsonApiNet to deserialize a compound Json document, however the data types in the Json are singular rather than plural (e.g. "vendor" rather than "vendors"). This causes an...