I am getting data from two tables using join and putting setIntegrityCheck(false)
in my model. Now I need to call save()
on that object. I know when you put setIntegrityCheck(false)
, you cannot call save()
, delete()
or update()
to this object. I have seen this question, but it doesn't address the answer.
So any way around?