I was wondering what should I use for my MAUI application.
I have worked with both a bit and I do like EF more for the linq syntax.
When I use with EF:
DbContextOptionsBuilder.UseSqlite()
and with sqlite-net-pcl:
SQLiteAsyncConnection()
do they both create and use a sqlite database?
What is “better”?