added info about AR

This commit is contained in:
Umed Khudoiberdiev 2017-05-20 23:58:36 +05:00
parent 9965fdac6b
commit f91537b48d
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ each for its own `findOne*` or `find*` methods
* `SpecificRepository` is deprecated for now
* `transaction` method has been removed from `Repository`. Use `EntityManager#transaction` method instead
* custom repositories do not support container anymore
* added ActiveRecord support (by extending EntityModel) class
### NEW FEATURES

View File

@ -97,6 +97,7 @@ export {InsertEvent} from "./subscriber/event/InsertEvent";
export {UpdateEvent} from "./subscriber/event/UpdateEvent";
export {RemoveEvent} from "./subscriber/event/RemoveEvent";
export {EntitySubscriberInterface} from "./subscriber/EntitySubscriberInterface";
export {EntityModel} from "./repository/EntityModel";
// -------------------------------------------------------------------------
// Deprecated