Releases: json-api-dotnet/JsonApiDotNetCore
Releases · json-api-dotnet/JsonApiDotNetCore
v1.3.1
v1.3.0
v1.2.2
v1.2.1
v1.2.0
v1.1.1
Merge pull request #59 from Research-Institute/develop fixes around id types
v1.1.0
Upgrades tooling to .Net Core SDK 1.0
v1.0.1
Use 204 on empty delete response
v1.0.0
See P2 for more details
Breaking Changes:
- There is no longer any need to override the
Id
property onIdentifiable
. The following is a valid model class sincepublic int Id { get; set; }
will be inherited.
public class TodoItemCollection : Identifiable
{ }
- Using Attributes to define relationships
[HasMany("todo-items")]
public virtual List<TodoItem> TodoItems { get; set; }
[HasOne("collection")]
public virtual Collection Collection { get; set; }
v0.2.12 - Meta Objects
Merge pull request #38 from Research-Institute/meta-objects Meta objects