C# CRUD Operations With SQLite Database Using Entity Framework

preview_player
Показать описание
#EntityFramework #SQLite #CRUD

Project Source Code
Рекомендации по теме
Комментарии
Автор

Excellent tutorial, very clear and concise.
While running tests, pressing the Update Button while TextBlock fields are empty (prior to any data going in them), the if statements conditions fail to prevent execution and throws an exception.
Swapping the conditions e.g. (name != null ) to ) resolves this issue.
Hopefully this is of use to someone.

SL-nhmn
Автор

I'm super happy to have run across this in my search for C# CRUD with SQLite... not only is it a great start for the entity framework, but you also taught me a few things about WPF and binding and a few other little helpful things. Nice.

fredwbd
Автор

This video is absolute gold.. I'm 100% new to C# and xaml, and I'm trying to build a point of sales system for my dad's friend's business. For about a week now I've been trying to figure out how to work with sqlite and how c# and xaml relate to the database... This video has answered every single question i had and then some that i would've ended up asking later down the road... you, sir, are a god send <3

broffutt
Автор

Thank you a lot! I've been struggling to find information about CRUD (without all this select * and etc). but your channel and the way you explain it's just priceless! thank you for your time and efforts!

kiaora
Автор

I can't describe how superb this tutorial is. Thank you ❤

fadhlanwasim
Автор

WoW... thank you so much for this tutorial...You are a born teacher... should have a fee paying classes. Really appreciate this lecture.

fooballers
Автор

Amazing work, thank you for your afford. Your teaching style helps a lot to understand the topic.

markuswi
Автор

I have watched maybe 20 videos about XAML but no videos was as good as yours!! You explain everything very good! Thanks.. Keep up the good work

hamzaelmossaoui
Автор

THANK YOU SO MUCH! YOU'RE A HUGE HELP.

I hope you are doing very good now. Keep making videos like this sir. You're so great!

jerichosantonia
Автор

Thank you very much, I haven't watched the video yet, but it helped me in the beginning with my knowledge of data bindings, and I'm sure it will help with databases too.

rinshima
Автор

it's cool and amazing. Thanks a lot 💯

AmirRobo
Автор

Excellent video! Thank you so much for this explanation and introduction. I wish you all the best :)

TheHvazz
Автор

Thank you so much, this tutorial is so valuable.

maxdesko
Автор

Hi, and thanks for all. I want to tell You that for me (Visual Studio 2022) has been impossible download the default entity.sqlite package. But choosing an older version (3.1.22), the download has been accepted and is working.

pcdgnvr
Автор

32:24 to clear the database: private void MenuItem_Click(object sender, RoutedEventArgs e)
{
using (DataContext context = new DataContext())
{
var allUsers = context.Users.ToList();

context.SaveChanges();
}
}to clear the database:

Kennerdoll
Автор

Hello Sir, I liked this video. can you make a WPF course or video series on WPF/MSSQL for something like a POS or for an APPOINTMENT system, where users have to login first and according the user's role he/she do tasks. Thank you very much & keep up the good work.

davidson
Автор

sir how to do with mvvm approach and code first method could you please explain me?

sivasothytharsi
Автор

Amazing videos, do you have a full couse of WPF? I would love to take it

sigib
Автор

Why not just write changes directly in the grid?

FANTICOUS
Автор

Great Tutorial! I'm new here. How can I do the, I have admin account and then there's users account? Only admin can do the CRUD.

xbxb