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; }