feat(findOptions): added IN operator
- added Entity [findAll/findOne]: Acepts IN root operators.
- added Documentation [FindOptions]: IN Examples and Query Generated.
feat(findOptions): added OR and AND operator
- added Entity [findAll/findOne]: Acepts AND and OR root operators.
- added Documentation [FindOptions]: AND/OR Examples and Query Generated.
feat(Entity): added destroy/destroyAll function
- added Entity [destroy]: deletes with where parameter.
- added Documentation [Entiry]: API example and query generated.
feat(Entity): findAll/findOne added limit and offset option
- added Entity [findAll/findOne]: Acepts limit and offset, it can be used with orderBy aswel.
- added Documentation [FindOptions]: Limit/Offset Examples and Query Generated.
feat(Entity): findAll/findOne added orderBy option
- added Entity [findAll/findOne]: Acepts orderBy option.
- added Documentation [FindOptions]: OrderBy Examples
feat(Entity): added update function
- added Entity [update]: updates the values of persted entity.
- change Entity [create]: refactored create parser to simplify unit tests.
- added UnitTest [createParser]: minimum test to check query generated.
- added UnitTest [updateParser]: minimum test to check query generated.
- added Documentation [API example]: save function example.
- added Documentation [API example]: Query example.
change(Entity): create now return the inserted Values
- change Entity [create]: now returns the inserted values as entity
- change Entity [create]: simplified the INSERT query. now do not use PROCEDURE anymore.
- fix Entity [mapping]: change storedValue to not enumerable to keep result clean.
feat(ConnectionManager): added logging option
- added ConnectionManager [logging]: configuration to log the query generated
feat(Entity): create 'findOne' function with where filter
- added Entity [findOne]: with where filter
- added Documentation [Getting Started]: minimal instalation and usage guid.
- added Documentation [ConnectionManage example]: minimal instruction and the usage of it's config.
- added Documentation [API example]: minimal API usage guid.
feat(Entity): update 'Create' function with PrimaryKey and Sequence Decorators
- added Decorator[PrimaryKey]: create Function now returns primaryKey value
- added Decorator[Sequence]: 'Create' function uses Squence on Create
- added Entity: findAll unit tests
feat(Entity): Minimal FindAll and Create function
- added Decorator[Table]: declare table name at Entity
- added Decorator[Column]: declare column name, and dataTypes
- added Entity: findAll with AND filter
- added Endity: create with value function
- fix Library: Exports