Using firstOrCreated() without predicate set
Closed this issue · 3 comments
olexth commented
Is it possible to use firstOrCreated() without predicate?
I need to have the only one Entity of a kind in the all app lifecycle. So, if no one exist - create one, if it already exist - fetch it to me.
Can I user firstOrCreated() for this?
Best regards,
Alex
vmartinelli commented
Hello. I think you can use something like:
let entity = dataContext.entities.first() ?? dataContext.entities.createEntity()
Please let me know if this solved your issue.
olexth commented
This is really elegant!
Thank you @vmartinelli.
Have a good day!
vmartinelli commented
Yay! :-)