Thank you for presenting multiple abstractions. This information is critical and often is overlooked.
@simont64395 ай бұрын
Excellent, concise and shows clearly the main differences of four common access methods.
@KvapuJanjalia Жыл бұрын
Why would I choose Microsoft.Data.Sqlite over System.Data.SQLite?
@AdamsTaiwan Жыл бұрын
I think it is so you can also run your code on Linux, Raspberry PI, etc.
@jalilseguel7 Жыл бұрын
Thnaks, 降价陈. This is a really helpful and compact video for begginers (and not so) students like me.
@kanhuang13215 ай бұрын
赞翻译名字
@fuzzy-02 Жыл бұрын
To provide feedback, as a beginner with theoretical but no practical knowledge, this was hard to follow. Especially since the lady talks while her cursor is always elsewhere instead of pointing to what she is talking about. Most of the time I was rewinding just to read and understand the code and try to figure out where is what she's talking about.
@Alpakki19 күн бұрын
Yep, completely useless
@ToddlersPreGra6 ай бұрын
What about using mysql and entity framewor?, there are not enough resources regarding this. Thank you
@KengSouth6 ай бұрын
Hi,I'm tryna use c# winform with sqlite database file.without encryption it works perfectly but when encrypted Nothing works.Could you help me.using system.data.sqlite packages.
@user-th6sk1ks2g7 ай бұрын
Wow that cleared a lot up for me. Thank you!
@Yozik2 Жыл бұрын
is dapper more vulnerable to sql injection then?
@AdamsTaiwan Жыл бұрын
I wonder if this is capable enough to work in multi-user situation like with web server.
@AdamsTaiwan Жыл бұрын
I still prefer to use Generic DataSet and works with Oracle, MSSQL, SQLite and Xml Diffgram. Just set data adaptor: SELECT anything.... then Get data is: records = dda.Fill(ds, start, max, table); //does paging update data is: records = dda.Update(ds, table);
@nosolocodigos Жыл бұрын
Could you make a video on how to add sqlite in blazor webassembly to work on the browser?