Entity Framework in Depth: The Complete Guide
Entity Framework in Depth: The Complete Guide, available at $94.99, has an average rating of 4.46, with 80 lectures, based on 13868 reviews, and has 65997 subscribers.
You will learn about Understand the differences between database-first and code-first workflows Build a domain model using database-first workflow Build a domain model using code-first workflow (with an existing or a new database) Use code-first migrations to upgrade or downgrade your database Override code-first conventions (using data annotations and fluent API) Query data using LINQ (using query syntax and extension methods) Use eager loading, lazy loading and explicit loading effectively Add, update and remove objects Use additional tools to profile and troubleshoot your applications Understand what the repository pattern is, what and if you need it, and how to implement it Apply best practices with Entity Framework This course is ideal for individuals who are Any .NET developer who wants to persist or query domain objects from a database It is particularly useful for Any .NET developer who wants to persist or query domain objects from a database.
Enroll now: Entity Framework in Depth: The Complete Guide
Summary
Title: Entity Framework in Depth: The Complete Guide
Price: $94.99
Average Rating: 4.46
Number of Lectures: 80
Number of Published Lectures: 79
Number of Curriculum Items: 80
Number of Published Curriculum Objects: 79
Original Price: $89.99
Quality Status: approved
Status: Live
What You Will Learn
- Understand the differences between database-first and code-first workflows
- Build a domain model using database-first workflow
- Build a domain model using code-first workflow (with an existing or a new database)
- Use code-first migrations to upgrade or downgrade your database
- Override code-first conventions (using data annotations and fluent API)
- Query data using LINQ (using query syntax and extension methods)
- Use eager loading, lazy loading and explicit loading effectively
- Add, update and remove objects
- Use additional tools to profile and troubleshoot your applications
- Understand what the repository pattern is, what and if you need it, and how to implement it
- Apply best practices with Entity Framework
Who Should Attend
- Any .NET developer who wants to persist or query domain objects from a database
Target Audiences
- Any .NET developer who wants to persist or query domain objects from a database
With over 6,500 students and 1,500+ positive reviews, this course is Udemy’s most popular course for learning Entity Framework!
Entity Framework is an Object / Relational Mapper (O/RM) that helps you read and write data from and to a database. In this course, Mosh, teaches you the core concepts of Entity Framework through a series of clear, concise and hands-on lectures.
Whether you’re new to Entity Framework, or been using it for a while but are looking for a comprehensive course with a clean structure to fill the missing parts, you’re going to love this course.
By the end of watching this course, you’ll be able to:
- Understand the differences between code-first and database-first workflows
- Build a domain model using database-first workflow
- Build a domain model using code-first workflow (with a new or an existing database)
- Use code-first migrations to upgrade or downgrade your database
- Override code-first conventions (using data annotations and fluent API)
- Query data using LINQ (using query syntax and extension methods)
- Use eager loading, lazy loading and explicit loading effectively
- Add, update and remove objects
- Use additional tools to profile and troubleshoot your applications
- Understand what the repository pattern is, why and when to use it and how
- Apply best practices with Entity Framework
Unlike other books or courses that teach Entity Framework like a manual, Mosh walks you through real-world scenarios using his extensive experience in the field. Not only does he teach you the fundamentals of Entity Framework, he’ll also teach you best practices along the way.
In each section, you’ll find exercises to help you reinforce the materials. These exercises have been chosen from real-world scenarios to help you prepare for the challenges of the real-world. Also, some sections include cheat sheets so you can quickly review what you learn in that section.
This course is produced with Entity Framework 6. If you’re using an older version of Entity Framework, you can still take this course as long as your version of Entity Framework is 4.1 or higher.
PREREQUISITES
In order to take this course, you should have at least 3 months experience programming in C#. If you need to strengthen your C# fundamentals, you can take Mosh’s related courses:
- C# Basics for Beginners
- C# Intermediate: Classes, Interfaces and Object-oriented Programming
- C# Advanced
WHAT OTHER STUDENTS WHO HAVE TAKEN THIS COURSE SAY:
“May God bless you and your efforts to create high quality courses. This has really changed my life from working as a security guard and doing websites for free, now I am a professional.” -Danish Jafri
“I’m impressed by Mosh’s ability to strike the right balance of topic background, demo and tip and tricks to get around common issues when learning a technology. Great job Mosh! I’m more than happy to have invested my time and money in your work.” -Ben Holtzman
“Excellent course! Mosh has a brilliant style and all of his courses are well presented and very high quality. This course was no exception and I learnt a lot from it.” -Steven Barnett
“It´s a pleasure following the lessons, It´s like a good book, you always want to read another chapter. This is not siimple a course of EF, it goes further, gives a very good explanation of Linq and the most brilliant description of Repository Pattern and Unity of work. Please keep doing courses. To be honest I believe that you should leave your work and spend the rest of your life teaching ;).” -Martin Suarez
“I’d taken a lot of video classes, and this is the best I’d taken. Very well explained, detailed and a good real life examples, lots of tips and more.” -Oscar Vargas
“As always… Mosh nails it with his thorough explanations (without all the “I’m better than you vibe”).” -Mike Loffland
100% MONEY-BACK GAUARANTEE
This course comes with a 30-day money back guarantee. If you’re not happy, ask for a refund, all your money back, no questions asked.
Do you want to take your programming skills to the next level?
Join the other 6,500 happy students who have taken this course andstart coding within minutes.
Course Curriculum
Chapter 1: Introduction
Lecture 1: About this Course
Lecture 2: About Me
Lecture 3: Asking Questions
Chapter 2: Getting Started
Lecture 1: Introduction
Lecture 2: What is Entity Framework?
Lecture 3: Workflows
Lecture 4: Demo: Database-First Workflow
Lecture 5: Demo: Code-First Workflow
Lecture 6: Database-First or Code-First?
Lecture 7: Summary
Chapter 3: Building a Model using Database-First Workflow
Lecture 1: Introduction
Lecture 2: Setting up the Database
Lecture 3: A Quick Tour of EDMX Designer
Lecture 4: Uncovering the EDMX
Lecture 5: Connection Strings
Lecture 6: Dealing with Database Changes
Lecture 7: Importing Stored Procedures
Lecture 8: Function Imports
Lecture 9: Working with Enums
Lecture 10: Exercises
Lecture 11: Summary
Chapter 4: Building a Model using Code-First Workflow
Lecture 1: Introduction
Lecture 2: Code First with a New Database
Lecture 3: Code First with an Existing Database
Lecture 4: Migrations: Enabling Migrations
Lecture 5: Migrations: Adding a New Class
Lecture 6: Migrations: Modifying an Existing Class
Lecture 7: Migrations: Deleting an Existing Class
Lecture 8: Migrations: Recovering from Mistakes
Lecture 9: Migrations: Downgrading a Database
Lecture 10: Seeding Database
Lecture 11: Exercises
Lecture 12: Summary
Chapter 5: Overriding Code-First Conventions
Lecture 1: Introduction
Lecture 2: Overriding Conventions
Lecture 3: Data Annotations
Lecture 4: Demo: Data Annotations
Lecture 5: Fluent API: Basics
Lecture 6: Fluent API: Relationships
Lecture 7: Demo: Fluent API
Lecture 8: Demo: Fluent API (Advanced Configurations)
Lecture 9: Organizing Fluent API Configurations
Lecture 10: Exercises
Lecture 11: Summary
Chapter 6: Querying Data using LINQ
Lecture 1: Introduction
Lecture 2: Introduction to LINQ
Lecture 3: LINQ in Action
Lecture 4: LINQ Syntax
Lecture 5: LINQ Extension Methods
Lecture 6: LINQ Extension Methods: Additional Methods
Lecture 7: Deferred Execution
Lecture 8: IQueryable Explained
Lecture 9: Exercises
Lecture 10: Summary
Chapter 7: Loading Related Objects
Lecture 1: Introduction
Lecture 2: Lazy Loading
Lecture 3: N + 1 Problem
Lecture 4: Eager Loading
Lecture 5: Explicit Loading
Lecture 6: Exercises
Lecture 7: Summary
Chapter 8: Updating Data
Lecture 1: Introduction
Lecture 2: Overview of Changing Data
Lecture 3: Adding objects
Lecture 4: Updating objects
Lecture 5: Removing objects
Lecture 6: Working with Change Tracker
Lecture 7: LINQPad
Lecture 8: Exercises
Lecture 9: Summary
Chapter 9: Using Entity Framework in Your Applications
Lecture 1: Introduction
Lecture 2: Repository Pattern
Lecture 3: Implementing the Repository Pattern
Lecture 4: Structuring Your Applications
Lecture 5: ASP.NET MVC Example
Lecture 6: WPF Example
Lecture 7: Summary
Chapter 10: Conclusion
Lecture 1: Final Words
Lecture 2: Bonus
Instructors
-
Mosh Hamedani
Helping Learners Build Successful Coding Careers
Rating Distribution
- 1 stars: 80 votes
- 2 stars: 137 votes
- 3 stars: 944 votes
- 4 stars: 4488 votes
- 5 stars: 8221 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Digital Marketing Foundation Course
- Google Shopping Ads Digital Marketing Course
- Multi Cloud Infrastructure for beginners
- Master Lead Generation: Grow Subscribers & Sales with Popups
- Complete Copywriting System : write to sell with ease
- Product Positioning Masterclass: Unlock Market Traction
- How to Promote Your Webinar and Get More Attendees?
- Digital Marketing Courses
- Create music with Artificial Intelligence in this new market
- Create CONVERTING UGC Content So Brands Will Pay You More
- Podcast: The top 8 ways to monetize by Podcasting
- TikTok Marketing Mastery: Learn to Grow & Go Viral
- Free Digital Marketing Basics Course in Hindi
- MailChimp Free Mailing Lists: MailChimp Email Marketing
- Automate Digital Marketing & Social Media with Generative AI
- Google Ads MasterClass – All Advanced Features
- Online Course Creator: Create & Sell Online Courses Today!
- Introduction to SEO – Basic Principles of SEO
- Affiliate Marketing For Beginners: Go From Novice To Pro
- Effective Website Planning Made Simple