Thanks for your help. Got a question, why did you register StudentListPageViewModel as singleton while AddupdateStudentDetailViewModel as Transient? Same question for their views as well
Thank you so much!! your video is amazing!! Just quick question regarding on SetUpDb() method at 11:41, how do we handle in upgrading the table schema, say, if I need to add some extra column for the table (or alter some specific column)? Do we need to put some logic of checking the db version and running some script within SetUpDb() by some how?
I want to start a mobile app with .net maui. Do you know if there is some difference between using webview with blazor and xaml? I mean performance, UX, delays, etc. Which do you recomend? Thanks
@@ProgrammingWithPragnesh May I kindly request if you can make another tutorial similar to that but with CRUD for one to many and many to many table relationship? the showed on the link is just CRUD for 1 table. Thanks!
Hello I'm facing an issue when update the data in sqlite on this project how can I fix it : if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
Can we do the update and delete on same screen ? Without flipping two different screens ? Please let me know and if possible please make the video on this topic. Thanks in advance.
Hi Surya, Yes is it possible either you can set page presentation mode to Modal ( Shell.PresentationMode="Modal") , so it will open modal page on same page, or you need create two panel and you need to set visibility based on your requirement.
Will be helpfull than your login tutorial be combined with this using the backend there, will be awesome, and I guess than you could open a patreon, definitely I will be there
Error XLS0414 The type 'models:StudentModel' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built. MauiApp4 C:\Users\Admin\source epos\MauiApp4\Views\StudentListPage.xaml 14 Error in UI DataTemple x:Datatype="models:StudentModel" Help me
Thank you for this video. Can you also make a video that makes an app in the same format that adds an item, calculates the quantity and price and price per quantity automatically and stores that in a database? Like there in the video? And how i can scroll or is it automaticlly if i have more students in the lists? because in the emulator it doesn't work.
Thanks, this was really helpful. but the ui is not updated if only one item is left and i delete that. until i restart the app item remains there. how to fix this
I want to create a database with several tables; I must use the Services as in your example or I but the database in another Data folder for example. Please
thanks for video man it's amazing I tray to create something like this but I found error when I ubdate student and returned to add new I have error to correct this error I tried to abb studentDetails = new student(); in add event
Really an excellent tutorial. Thanks for sharing.
Thanks for your help. Got a question, why did you register StudentListPageViewModel as singleton while AddupdateStudentDetailViewModel as Transient? Same question for their views as well
Hi , Singleton will intialize viewmodel one time only where transient whenever you open page it gonna intialize it.
Hello i have a question!!! Can i use EF with this db
Hi , I m not sure I didn't tried yet.
@@ProgrammingWithPragneshUnfortunately doesnt work with EF. But anyway thank you for your work
Thank you so much!! your video is amazing!! Just quick question regarding on SetUpDb() method at 11:41, how do we handle in upgrading the table schema, say, if I need to add some extra column for the table (or alter some specific column)? Do we need to put some logic of checking the db version and running some script within SetUpDb() by some how?
Do you have any tutorial that CRUD on 2 or more tables? One to many, many to many etc?
I want to start a mobile app with .net maui. Do you know if there is some difference between using webview with blazor and xaml? I mean performance, UX, delays, etc. Which do you recomend? Thanks
I think you can go with .NET MAUI (XAML) by this you can achieve pure Native UI Look and feel.
Confused as to what the point of the interface is e.g. IStudentService, would it work without it? With just StudentService instead
Thanks for the video. Do you have live training class?
Not yet!
Thanks a lot for the video
One suggests : please make the font bigger in future videos, it is easier to see with bigger font
Yeah, Thank you so much for suggestion, I will make font size bigger in upcoming videos.
Hi, how do I upload the app to my android for a test? If I had to copy the sqlite tables how do I attach them to the application? Greetings.
How about CRUD for MSSQl Server? is it the same?
ua-cam.com/video/mNM5Z_pHGqM/v-deo.html
@@ProgrammingWithPragnesh May I kindly request if you can make another tutorial similar to that but with CRUD for one to many and many to many table relationship? the showed on the link is just CRUD for 1 table. Thanks!
Thank You!!!
If you can please make a video for the webcam (Emgu Cv). Thank you
Thank you, sorry i do not know about this, I will reserch and try to work on it.
Well done
I want to design Arabic App . how I con change the direction interface to Arabic?
HI , You can use FlowDirection Property on controls to change direction
hello sir thanks for the videos, is it possible to define a foreign key in the model?
Thanks for Video, Please Put Also Crud Operation with SQLite in MAUI Blazor
Yeah , I will create video for it.
ua-cam.com/video/paPe68vT2Mg/v-deo.html
Hello I'm facing an issue when update the data in sqlite on this project how can I fix
it : if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
Will it create sqlite db automatically?
Yes, it will create automatically
@@ProgrammingWithPragnesh I am getting this error VTable setup of type SQLitePCL.SQLite3Provider_e_sqlite3 failed. Please help, thanks
Hi, Can you try to run this repo code : github.com/mistrypragnesh40/SQLiteDemoMAUI
and let me know is it working or not.
@@ProgrammingWithPragnesh I tried this it is working fine. I did the same thing in my code but same error
Can you share your repo url to me , i will check it
Hi, do you run VS under Linux? Otherwise how Android emulator gets db path to SQLite, could you clarify ?
Thank you
HI, I am using Windows Platform for running Visual Studio, And I am using real device , so it accessing DB path from LoaclApplicationData.
Can we do the update and delete on same screen ? Without flipping two different screens ? Please let me know and if possible please make the video on this topic. Thanks in advance.
Hi Surya, Yes is it possible either you can set page presentation mode to Modal ( Shell.PresentationMode="Modal") , so it will open modal page on same page, or you need create two panel and you need to set visibility based on your requirement.
hello sir, thks for this amazing video , i have a question if maui can execute ussd command if there any tutorial or documentation for that plz
Hi, I am not sure about ussd command. I will let you know if I find anything regarding this.
Thank you for the video!
My pleasure!
I already creat MyDb.db , and location file all set Mydocument. But when i add like you, it not join my Db.
thanks a lot for your video, if i want to add database credentials how i can do it
You can store that in encrypted format in db.
thanks for your great videos would you make a video on working with sqlserver direct connection not through api
Will be helpfull than your login tutorial be combined with this using the backend there, will be awesome, and I guess than you could open a patreon, definitely I will be there
Error XLS0414 The type 'models:StudentModel' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built. MauiApp4 C:\Users\Admin\source
epos\MauiApp4\Views\StudentListPage.xaml 14
Error in UI DataTemple x:Datatype="models:StudentModel"
Help me
Thank you for this video. Can you also make a video that makes an app in the same format that adds an item, calculates the quantity and price and price per quantity automatically and stores that in a database? Like there in the video? And how i can scroll or is it automaticlly if i have more students in the lists? because in the emulator it doesn't work.
Yeah sure, I will try to create video on it, and Yes it scroll automatically,
Can I use this with SQL Server ???
Yes, You can use it, You just need to call Web API to perform this all operation.
the sound of your keyboard makes me die inside
Can you please present the data stored in database and show me the tables as i have some issue in sqlite it shows no tables in it.
Thankyou Pro , But The MainPage it is already in app but he is no show this page is go to page student How ??
Hello Ali, In AppShell.xaml I set the route page as a StudentListPage.
@@ProgrammingWithPragnesh Thank you i see Now , i wait other vedios of MAUI . Good Luck Pro
Can you make one video of sql connectivity database..
Thank you so much.
Thanks, this was really helpful. but the ui is not updated if only one item is left and i delete that. until i restart the app item remains there. how to fix this
Yeah Thank you, and Yes you are right, Just use Student.Clear() statement at the starting of GetStudentList() method.
@@ProgrammingWithPragnesh thankyou so much
Upload images will be great as continuation of this
Thanks Sir
Your Welcome
👏👏👏👏👏👏
I want to create a database with several tables; I must use the Services as in your example or I but the database in another Data folder for example. Please
If I have any problem with my learning face, i will knock you . Ok sir
thanks for video man it's amazing
I tray to create something like this
but I found error when I ubdate student and returned to add new I have error
to correct this error I tried to abb
studentDetails = new student();
in add event
thank you
Your Welcome