I’m just trying to dive into CodeIgniter + RedBean ORM.
Been glancing through some examples and think it’s good enough to get started.
However, it seems like using RedBean eliminates the need to use CodeIgniter models? Looks like you can do most of the DB-related things right from the Controllers.
Is this true? (and at a higher level, is it true for most of the ORMs?)
It’s true but not because of
RedBean. You can useCodeIgniterwithout model if you want but it’s good to keep it separate.You can use queries from inside your controller directly.
Model-View-Controller