Download link
File List
-
01. Cource overview/01. Cource overview.mp4 3.96 MB
02. Looking at the scenario/01. Introduction.mp4 2.95 MB
02. Looking at the scenario/02. What You Build - The FriendOrganizer.mp4 4.83 MB
02. Looking at the scenario/03. Course Outline.mp4 6.55 MB
03. Defining the Architecture/01. Introduction.mp4 884.89 KB
03. Defining the Architecture/02. About N-tier and Client-server.mp4 4.34 MB
03. Defining the Architecture/03. Plan the Client Layers.mp4 2.4 MB
03. Defining the Architecture/04. Set up the FriendOrganizer Solution.mp4 12.18 MB
03. Defining the Architecture/05. Summary.mp4 1.88 MB
04. Building the Basic UI Layer/01. Introduction.mp4 1.2 MB
04. Building the Basic UI Layer/02. Plan the User Interface Layer.mp4 7.68 MB
04. Building the Basic UI Layer/03. The MVVM-pattern.mp4 1.67 MB
04. Building the Basic UI Layer/04. Create the MainViewModel.mp4 12.07 MB
04. Building the Basic UI Layer/05. Implement INotifyPropertyChanged.mp4 13.72 MB
04. Building the Basic UI Layer/06. Set the DataContext.mp4 3.28 MB
04. Building the Basic UI Layer/07. Define the User Interface.mp4 29.75 MB
04. Building the Basic UI Layer/08. Add Autofac for Dependency Injection.mp4 9.24 MB
04. Building the Basic UI Layer/09. Summary.mp4 747.92 KB
05. Setting up Entity Framework/01. Introduction.mp4 1.29 MB
05. Setting up Entity Framework/02. Plan the Data Access Layer.mp4 3.13 MB
05. Setting up Entity Framework/03. Create a DbContext Subclass.mp4 12.17 MB
05. Setting up Entity Framework/04. Add a Code First Migration.mp4 20.11 MB
05. Setting up Entity Framework/05. Add Constraints.mp4 18.36 MB
05. Setting up Entity Framework/06. Create and Seed the Database.mp4 19.49 MB
05. Setting up Entity Framework/07. Build the FriendDataService.mp4 16.64 MB
05. Setting up Entity Framework/08. Load Data Asynchronously.mp4 12.07 MB
05. Setting up Entity Framework/09. Summary.mp4 2.04 MB
06. Decoupling the UI Parts/01. Introduction.mp4 1.74 MB
06. Decoupling the UI Parts/02. Plan the New Structure.mp4 3.53 MB
06. Decoupling the UI Parts/03. Create the LookupDataService.mp4 15.04 MB
06. Decoupling the UI Parts/04. Create the NavigationViewModel.mp4 11.92 MB
06. Decoupling the UI Parts/05. Create the NavigationView.mp4 11.81 MB
06. Decoupling the UI Parts/06. Adjust the FriendDataService.mp4 3.55 MB
06. Decoupling the UI Parts/07. Create the FriendDetailViewModel.mp4 8.09 MB
06. Decoupling the UI Parts/08. Create the FriendDetailView.mp4 11.54 MB
06. Decoupling the UI Parts/09. Summary.mp4 1.19 MB
07. Communicating Between ViewModels/01. Introduction.mp4 667.91 KB
07. Communicating Between ViewModels/02. Plan the ViewModel Communication.mp4 1005.83 KB
07. Communicating Between ViewModels/03. Introduce Prism's EventAggregator.mp4 5.38 MB
07. Communicating Between ViewModels/04. Publish the OpenFriendDetaiViewEvent.mp4 11.72 MB
07. Communicating Between ViewModels/05. Subscribe to the OpenFriendDetaiViewEvent.mp4 10.15 MB
07. Communicating Between ViewModels/06. Summary.mp4 586.43 KB
08. Saving Data/01. Introduction.mp4 924.84 KB
08. Saving Data/02. The ICommand and MVVM.mp4 4.14 MB
08. Saving Data/03. Introduce the SaveCommand.mp4 10.97 MB
08. Saving Data/04. Save the Friend with Entity Framework.mp4 11.91 MB
08. Saving Data/05. Update the Navigation After Saving.mp4 16.41 MB
08. Saving Data/06. Add the NavigationItemViewModel.mp4 11.83 MB
08. Saving Data/07. Summary.mp4 976.05 KB
09. Validating User Input/01. Introduction.mp4 2.33 MB
09. Validating User Input/02. Process Unhandled Exceptions.mp4 14.12 MB
09. Validating User Input/03. Validation in WPF.mp4 3.72 MB
09. Validating User Input/04. Wrap the Model.mp4 3.45 MB
09. Validating User Input/05. Create the FriendWrapper.mp4 7.38 MB
09. Validating User Input/06. Implement INotifyDataErrorInfo.mp4 18.48 MB
09. Validating User Input/07. Add Some Validation Logic.mp4 7.89 MB
09. Validating User Input/08. Display the Error in the Tooltip.mp4 18.55 MB
09. Validating User Input/09. Display the Error Below the TextBox.mp4 13.44 MB
09. Validating User Input/10. Create a NotifyDataErrorInfoBase Class.mp4 10.36 MB
09. Validating User Input/11. Introduce a ModelWrapper Class.mp4 13.02 MB
09. Validating User Input/12. Trigger Validation in the ModelWrapper.mp4 14.49 MB
09. Validating User Input/13. Validate by Using Data Annotations.mp4 29.37 MB
09. Validating User Input/14. Enable and Disable the Save Button.mp4 15.4 MB
09. Validating User Input/15. Summary.mp4 1.18 MB
10. Detecting Model Changes/01. Introduction.mp4 1.27 MB
10. Detecting Model Changes/02. How Entity Framework Tracks Changes.mp4 6.47 MB
10. Detecting Model Changes/03. Plan the DbContext Lifetime.mp4 2.46 MB
10. Detecting Model Changes/04. Create the FriendRepository.mp4 24.41 MB
10. Detecting Model Changes/05. Use a Single FriendRepository per Detail View.mp4 31.92 MB
10. Detecting Model Changes/06. Add an HasChanges Method to the Repository.mp4 4.78 MB
10. Detecting Model Changes/07. Enable and Disable the Save Button.mp4 19.68 MB
10. Detecting Model Changes/08. Block Navigation from a Changed Friend.mp4 19.98 MB
10. Detecting Model Changes/09. Create a MessageDialogService.mp4 25.58 MB
10. Detecting Model Changes/10. Remove Selection in the Navigation.mp4 30.26 MB
10. Detecting Model Changes/11. Style the Navigation.mp4 8.84 MB
10. Detecting Model Changes/11. Summary.mp4 3.63 MB
11. Adding and Deleting Entities/01. Introduction.mp4 1.27 MB
11. Adding and Deleting Entities/02. Add a New Friend.mp4 36.84 MB
11. Adding and Deleting Entities/03. Trigger the Validation.mp4 7.56 MB
11. Adding and Deleting Entities/04. Delete an Existing Friend.mp4 15.72 MB
11. Adding and Deleting Entities/05. Inform the Navigation with an Event.mp4 14.62 MB
11. Adding and Deleting Entities/06. Hide and Display the FriendDetailView.mp4 14.48 MB
11. Adding and Deleting Entities/07. Display a Dialog Before Deleting.mp4 7.35 MB
11. Adding and Deleting Entities/08. Summary.mp4 875.09 KB
12. Working with Lookups/01. Introduction.mp4 1.38 MB
12. Working with Lookups/02. Create the ProgrammingLanguage-entity.mp4 19.24 MB
12. Working with Lookups/03. Extend the LookupDataService.mp4 5.12 MB
12. Working with Lookups/04. Load the Lookup in the FriendDetailViewModel.mp4 19.37 MB
12. Working with Lookups/05. Add a ComboBox to the FriendDetailView.mp4 16.06 MB
12. Working with Lookups/06. Allow Selection of an Empty Entry.mp4 9.52 MB
12. Working with Lookups/07. Summary.mp4 867.79 KB
13. Working with Object Graphs/01. Introduction.mp4 1.94 MB
13. Working with Object Graphs/02. Create the FriendPhoneNumber Entity.mp4 9.73 MB
13. Working with Object Graphs/03. Add a DataGrid to the FriendDetailView.mp4 6.85 MB
13. Working with Object Graphs/04. Manage Phone Numbers in the FriendDetailViewModel.mp4 27.11 MB
13. Working with Object Graphs/05. Display Validation Errors in the DataGrid.mp4 7.28 MB
13. Working with Object Graphs/06. Add a Phone Number.mp4 7.59 MB
13. Working with Object Graphs/07. Remove a Phone Number.mp4 15.18 MB
13. Working with Object Graphs/08. Summary.mp4 733.54 KB
14. Refactoring to Support Other Detail Views/01. Introduction.mp4 3.46 MB
14. Refactoring to Support Other Detail Views/02. Create the DetailViewModel Property.mp4 13.56 MB
14. Refactoring to Support Other Detail Views/03. Create the OpenDetailViewEvent.mp4 30.34 MB
14. Refactoring to Support Other Detail Views/04. Create the AfterDetailDeletedEvent.mp4 19.76 MB
14. Refactoring to Support Other Detail Views/05. Create the AfterDetailSavedEvent.mp4 10.11 MB
14. Refactoring to Support Other Detail Views/06. Fix the New Friend Creation.mp4 17.36 MB
14. Refactoring to Support Other Detail Views/07. Create a GenericRepository Class.mp4 21.03 MB
14. Refactoring to Support Other Detail Views/08. Create a DetailViewModelBase Class.mp4 22.44 MB
14. Refactoring to Support Other Detail Views/09. Summary.mp4 1.74 MB
15. Introducing Another Detail View/01. Introduction.mp4 1.74 MB
15. Introducing Another Detail View/02. Create the Meeting Entity.mp4 21.63 MB
15. Introducing Another Detail View/03. Create the MeetingRepository.mp4 9.5 MB
15. Introducing Another Detail View/04. Wrap the Meeting Entity.mp4 2.88 MB
15. Introducing Another Detail View/05. Create the MeetingDetailViewModel.mp4 20.38 MB
15. Introducing Another Detail View/06. Create the MeetingDetailView.mp4 15.85 MB
15. Introducing Another Detail View/07. Load Meetings in the NavigationViewModel.mp4 20.83 MB
15. Introducing Another Detail View/08. Extend the NavigationView.mp4 18.55 MB
15. Introducing Another Detail View/09. Instantiate the MeetingDetailViewModel.mp4 11.23 MB
15. Introducing Another Detail View/10. Use Autofac’s IIndex Interface.mp4 18.66 MB
15. Introducing Another Detail View/11. Add New Meetings.mp4 13.52 MB
15. Introducing Another Detail View/12. Synchronize the Start and End Date.mp4 7.87 MB
15. Introducing Another Detail View/13. Summary.mp4 973.57 KB
16. Picking M-N-related Details/01. Introduction.mp4 1.85 MB
16. Picking M-N-related Details/02. Build the Picklist in the MeetingDetailView.mp4 13.86 MB
16. Picking M-N-related Details/03. Extend the MeetingDetailViewModel.mp4 6.88 MB
16. Picking M-N-related Details/04. Load the Friends for the Picklist.mp4 17.01 MB
16. Picking M-N-related Details/05. Add and Remove Friends.mp4 9.41 MB
16. Picking M-N-related Details/06. Block the Deletion of Friends.mp4 15.49 MB
16. Picking M-N-related Details/07. Summary.mp4 867.54 KB
17. Switching to a Tabbed UI/01. Introduction.mp4 2.59 MB
17. Switching to a Tabbed UI/02. Adjust the MainViewModel.mp4 34.44 MB
17. Switching to a Tabbed UI/03. Add a TabControl to the MainWindow.mp4 18.7 MB
17. Switching to a Tabbed UI/04. Display a Title in the Tab Header.mp4 7.82 MB
17. Switching to a Tabbed UI/05. The Plan to Close a Tab.mp4 1.37 MB
17. Switching to a Tabbed UI/06. Introduce the CloseDetailViewCommand.mp4 5 MB
17. Switching to a Tabbed UI/07. Publish the AfterDetailClosedEvent.mp4 4.69 MB
17. Switching to a Tabbed UI/08. Subscribe to the Event to Close the Tab.mp4 9.01 MB
17. Switching to a Tabbed UI/09. Check for Changes When Closing a Tab.mp4 9.35 MB
17. Switching to a Tabbed UI/10. Be Aware of Refresh Issues in a Tabbed UI.mp4 2.34 MB
17. Switching to a Tabbed UI/11. Refresh the MeetingDetailView After Updating a Friend.mp4 7.2 MB
17. Switching to a Tabbed UI/12. Reload a Single Friend with Entity Framework.mp4 14.79 MB
17. Switching to a Tabbed UI/13. Refresh the MeetingDetailView After Deleting a Friend.mp4 5.92 MB
17. Switching to a Tabbed UI/14. Open and Close Tabs for New Items.mp4 23.28 MB
17. Switching to a Tabbed UI/15. Summary.mp4 1.38 MB
18. Creating a Detail View for Collections/01. Introduction.mp4 1.63 MB
18. Creating a Detail View for Collections/02. Integrate the Detail View for Programming Languages.mp4 30.25 MB
18. Creating a Detail View for Collections/03. Set up the ProgrammingLanguageRepository.mp4 7.79 MB
18. Creating a Detail View for Collections/04. Implement the ProgrammingLanguageDetailViewModel.mp4 13.21 MB
18. Creating a Detail View for Collections/05. Set up the View with a DataGrid.mp4 7.92 MB
18. Creating a Detail View for Collections/06. Refresh the Programming Languages in Open Friend Tabs.mp4 12.17 MB
18. Creating a Detail View for Collections/07. Add and Remove Programming Languages.mp4 19.48 MB
18. Creating a Detail View for Collections/08. Catch Exceptions When Saving Referenced Languages.mp4 7.47 MB
18. Creating a Detail View for Collections/09. Check if a Programming Language Is Referenced.mp4 5.55 MB
18. Creating a Detail View for Collections/10. Summary.mp4 926.7 KB
19. Implementing Optimistic Concurrency/01. Introduction.mp4 3.44 MB
19. Implementing Optimistic Concurrency/02. Two Users Saving the Same Friend.mp4 4.36 MB
19. Implementing Optimistic Concurrency/03. Handle Concurrency Conflicts.mp4 1.83 MB
19. Implementing Optimistic Concurrency/04. Optimistic Concurrency with Entity Framework.mp4 2.31 MB
19. Implementing Optimistic Concurrency/05. Add a Row Version to the Friend Entity.mp4 22.08 MB
19. Implementing Optimistic Concurrency/06. Handle the DbUpdateConcurrencyException.mp4 19.46 MB
19. Implementing Optimistic Concurrency/07. When Another User Has Deleted an Entity.mp4 23.87 MB
19. Implementing Optimistic Concurrency/08. Move the Exception Handling to the Base Class.mp4 20.69 MB
19. Implementing Optimistic Concurrency/09. Summary.mp4 1.95 MB
20. Styling the Application/01. Introduction.mp4 2.76 MB
20. Styling the Application/02. What the Final Application Should Look Like.mp4 1.76 MB
20. Styling the Application/03. Ways to Style Your WPF Application.mp4 3.2 MB
20. Styling the Application/04. Add Mahapps.Metro to the FriendOrganizer Application.mp4 26.42 MB
20. Styling the Application/05. Style the Navigation and the Tab Headers.mp4 23.33 MB
20. Styling the Application/06. Fix the Font Sizes for Buttons and ComboBoxes.mp4 15.36 MB
20. Styling the Application/07. Adjust the Colors of Validation Errors and Controls.mp4 10.98 MB
20. Styling the Application/08. Use the TextBox Style from Mahapps.Metro.mp4 9.56 MB
20. Styling the Application/09. Use the Mahapps.Metro MessageDialog.mp4 19.91 MB
20. Styling the Application/10. The Final FriendOrganizer Application.mp4 6.55 MB
20. Styling the Application/11. Course Summary.mp4 3.42 MB
wpf-mvvm-entity-framework-app.zip 2.42 MB
Download Info
-
Tips
“Building an Enterprise App with WPF, MVVM, and Entity Framework Code First” Its related downloads are collected from the DHT sharing network, the site will be 24 hours of real-time updates, to ensure that you get the latest resources.This site is not responsible for the authenticity of the resources, please pay attention to screening.If found bad resources, please send a report below the right, we will be the first time shielding.
-
DMCA Notice and Takedown Procedure
If this resource infringes your copyright, please email([email protected]) us or leave your message here ! we will block the download link as soon as possiable.