Wow; lots of content for sure.. I didn't get it all the first time, gotta run another time or three, and take notes for sure.. But Very good video. I really need to learn the Why's of all the bindings, and passing, etc.. The how is really a good thing which you have expained very well. I think it's coming to me, just slowly. Thanks for putting these videos out.
@muratoztekin46364 жыл бұрын
Its very nice and clear to understand. Thanks a lot.
@CuriousDrive4 жыл бұрын
Thanks for watching Murat. I appreciate the comment.
@TheAmazeer4 жыл бұрын
Very fast and clear but I don't understand all the details of pages navigations... You are a good teacher
@janajanar20454 жыл бұрын
Wonderful explanation.
@CuriousDrive4 жыл бұрын
Thanks for watching Jana.
@persian_hollywood_reporter86874 жыл бұрын
👏👏👏👏
@CuriousDrive4 жыл бұрын
Thanks for watching
@DhirenNaik4 жыл бұрын
very nice. easy to understand.
@CuriousDrive4 жыл бұрын
Thanks for watching Dhiren. Hope you subscribe and share :)
@ericleija65715 жыл бұрын
Great Job! Nice and clean! - Leijae
@CuriousDrive5 жыл бұрын
Thanks Eric. :)
@camilogomez71674 жыл бұрын
Thanks.
@CuriousDrive4 жыл бұрын
Thanks for watching 😊
@sahebnanda34342 жыл бұрын
I am using the same process. But getting null reference error (the reference is not set to an object) while trying to set value using ((AddOrEditViewModel)BindingContext).SelectedModel) = "xyz"
@purplepanther41534 жыл бұрын
Thumbs up mate, One question around MessagingCenter. How come you did not use commands in view model for edit, update, add. instead used MC in code behind.? Any benefits of MC over commands
@CuriousDrive4 жыл бұрын
Hello Panther, I am not sure which commands you are talking about?
@suryapandey2953 жыл бұрын
just want to ask one thing, how to do this edit, update on the same UI. I don't want to navigate to other ui. Please let me know .
@CuriousDrive3 жыл бұрын
It could be done. You will have make some controls visible and invisible on click of Edit I guess.
@halo_exe3 жыл бұрын
How to remove Employees by name? Like if I want to do: Employees.Remove(Employees.Where(Employees.EmployeeName = "Sheri Spruce")) ???
@CuriousDrive3 жыл бұрын
You will have to pass the item that you want to delete. In your statement, Where() will return Enumerable not the item. Please use FirstOrDefault() to get the item that you want to delete