tattersoftware / codeigniter4-relations

Entity relationships for CodeIgniter 4
MIT License
87 stars 20 forks source link

With Method discarding the first result #16

Closed eafarooqi closed 3 years ago

eafarooqi commented 3 years ago

$data = $this->meetingModel->with('teams')->find(30); print_r($data->teams);

This prints only one record but in database two rows exists. same case with other models and entities. the firs row is always removed or not queried.

eafarooqi commented 3 years ago

Sorry! Nothing to do with codeigniter4-relations