Skip to content

v1.0.0

Compare
Choose a tag to compare
@jaredcnance jaredcnance released this 02 Mar 14:47
· 2602 commits to master since this release

See P2 for more details

Breaking Changes:

  • There is no longer any need to override the Id property on Identifiable. The following is a valid model class since public 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; }