19 Replies
Just search "sqlite" on nuget
Yeah but they use sql
language
And what would you like to use instead?
If you want to avoid writing SQL, use EF Core with the SQLite driver
C#
I need an equivalent of mongoose
Use ef core
Arlight
sqlite database is a file based database, it decides how to store and read stuff, but it doesnt do anythign on its own
you need to interact with your "database" .. for column based databases its SQL
frameworks can put a layer on top so it writes the sql for you
Since when is SQL a column db?
SQL == Structured Query Language, its for talking between 2 sources
SQLITE can understand SQL
Yeah, but SQLite isn't a column-based database
It's, like, an actual specific term in the database world
Like document databases, graph databases, etc
its a "relational database" was wrong term
Yeah, "relational" is right
be aware that sqlite is a relational database
it is not a document database like mongo
Yeah I know
Closer to Quickdb
I guess
litedb would be an easy document database and very easy to use
(most of the time you want a relational db tho, aiui)
Document databases are drastically overused and frequently poorly used. ( opinion )
100%
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.