-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
The learning curve is high due to a lot of magic that appears to happen. Make it simpler, perhaps using the more traditional ways of coding up i.e Object oriented objects:
(new Fixture(User::class))->insert(...)->unique(...)->make();
(new Insert(User::class))->insert(...)->exec();
(new Select(User::class))->select(...)->where(...)->exec();
(new Delete(User::class))->where(...)->exec();
(new Update(User::class))->update(...)->where(...)->exec();
Give convenience calls such as disableDefaults(...) on this API.
Also somehow facilitate failures more - perhaps display all queries executed for that scenario up til that point.
Metadata
Metadata
Assignees
Labels
No labels