Skip to content

v2.2.0-beta4

Pre-release
Pre-release
Compare
Choose a tag to compare
@jaredcnance jaredcnance released this 03 Jan 12:55
· 2225 commits to master since this release

Breaking Changes

  • #208 Generic DbContextResolver, removal of deprecated DefaultEntityRepository constructor, and addition of IDbContextResolver by PR #214

Example Change Required:
https://github.com/json-api-dotnet/JsonApiDotNetCore/pull/214/files#diff-e6f5a70c8d0e4db978b571b0b7d2d716

Non-Breaking Changes

  • #105 Explicit Filter/Sort Definitions by PR #215
public class MyEntity : Identifiable {
  [Attr("name", isFilterable: false, isSortable: false)]
  public string Name { get; set; }
}