Tags
Language
Tags
March 2024
Su Mo Tu We Th Fr Sa
25 26 27 28 29 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31 1 2 3 4 5 6

Entity Framework in Depth [repost]

Posted By: ParRus
Entity Framework in Depth [repost]

Entity Framework in Depth
WEBRip | English | MP4 + Project files | 1280 x 720 | AVC ~369 kbps | 30 fps
AAC | 39.4 Kbps | 44.1 KHz | 1 channel | 6h 30mn | 1.33 GB
Genre: Video Tutorial / Development

Learn to query or save domain objects to a database using 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.

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 to you can quickly review what you learn in that section.

This course is produced with Entity Framework 6 and will be updated as new versions of Entity Framework come out. 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.

What others 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


Do you want to take your programming skills to the next level?

Then take the course now and let's get started.

Section 1: Introduction
Lecture 1
About this Course
01:00
Lecture 2
About Me
01:35
Lecture 3
Asking Questions
02:58
Section 2: Getting Started
Lecture 4
Introduction
00:26
Lecture 5
What is Entity Framework?
01:07
Lecture 6
Workflows
01:33
Lecture 7
Demo: Database-First Workflow
10:22
Lecture 8
Demo: Code-First Workflow
09:07
Lecture 9
Database-First or Code-First?
03:41
Lecture 10
Summary
00:24
Section 3: Building a Model using Database-First Workflow
Lecture 11
Introduction
00:35
Lecture 12
Setting up the Database
00:54
Lecture 13
A Quick Tour of EDMX Designer
06:46
Lecture 14
Uncovering the EDMX
06:56
Lecture 15
Connection Strings
03:16
Lecture 16
Dealing with Database Changes
13:30
Lecture 17
Importing Stored Procedures
05:28
Lecture 18
Function Imports
07:38
Lecture 19
Working with Enums
07:22
Lecture 20
Exercises
3 pages
Lecture 21
Summary
00:17
Section 4: Building a Model using Code-First Workflow
Lecture 22
Introduction
00:23
Lecture 23
Code First with a New Database
13:15
Lecture 24
Code First with an Existing Database
06:58
Lecture 25
Migrations: Enabling Migrations
04:21
Lecture 26
Migrations: Adding a New Class
09:29
Lecture 27
Migrations: Modifying an Existing Class
08:25
Lecture 28
Migrations: Deleting an Existing Class
05:53
Lecture 29
Migrations: Recovering from Mistakes
01:22
Lecture 30
Migrations: Downgrading a Database
06:01
Lecture 31
Seeding Database
06:27
Lecture 32
Exercises
2 pages
Lecture 33
Summary
00:27
Section 5: Overriding Code-First Conventions
Lecture 34
Introduction
00:25
Lecture 35
Overriding Conventions
08:17
Lecture 36
Data Annotations
07:17
Lecture 37
Demo: Data Annotations
08:04
Lecture 38
Fluent API: Basics
03:45
Lecture 39
Fluent API: Relationships
10:05
Lecture 40
Demo: Fluent API
13:28
Lecture 41
Demo: Fluent API (Advanced Configurations)
04:03
Lecture 42
Organizing Fluent API Configurations
07:37
Lecture 43
Exercises
3 pages
Lecture 44
Summary
00:36
Section 6: Querying Data using LINQ
Lecture 45
Introduction
00:18
Lecture 46
Introduction to LINQ
03:19
Lecture 47
LINQ in Action
07:49
Lecture 48
LINQ Syntax
17:00
Lecture 49
LINQ Extension Methods
16:09
Lecture 50
LINQ Extension Methods: Additional Methods
05:41
Lecture 51
Deferred Execution
07:11
Lecture 52
IQueryable Explained
07:40
Lecture 53
Exercises
3 pages
Lecture 54
Summary
00:37
Section 7: Loading Related Objects
Lecture 55
Introduction
00:14
Lecture 56
Lazy Loading
08:05
Lecture 57
N + 1 Problem
02:59
Lecture 58
Eager Loading
06:00
Lecture 59
Explicit Loading
08:55
Lecture 60
Exercises
1 page
Lecture 61
Summary
00:43
Section 8: Updating Data
Lecture 62
Introduction
00:29
Lecture 63
Overview of Changing Data
01:23
Lecture 64
Adding objects
07:49
Lecture 65
Updating objects
02:22
Lecture 66
Removing objects
06:44
Lecture 67
Working with Change Tracker
06:03
Lecture 68
LINQPad
07:27
Lecture 69
Exercises
1 page
Lecture 70
Summary
00:20
Section 9: Using Entity Framework in Your Applications
Lecture 71
Introduction
00:33
Lecture 72
Repository Pattern
11:42
Lecture 73
Implementing the Repository Pattern
14:35
Lecture 74
Structuring Your Applications
04:09
Lecture 75
ASP.NET MVC Example
07:42
Lecture 76
WPF Example
06:14
Lecture 77
Summary
01:01
Section 10: Conclusion
Lecture 78
Final Words
01:01
Lecture 79
Get My Other Courses with a Discount
Article


also You can watch my other last: Programming-posts

General
Complete name : 006 LINQ Extension Methods Additional Methods.mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
File size : 16.8 MiB
Duration : 5mn 41s
Overall bit rate mode : Variable
Overall bit rate : 411 Kbps
Encoded date : UTC 2015-10-03 01:03:51
Tagged date : UTC 2015-10-03 01:03:51

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : Baseline@L3.1
Format settings, CABAC : No
Format settings, ReFrames : 3 frames
Format settings, GOP : M=1, N=50
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 5mn 41s
Bit rate : 369 Kbps
Maximum bit rate : 5 348 Kbps
Width : 1 280 pixels
Height : 720 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 30.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.013
Stream size : 15.0 MiB (90%)
Writing library : Zencoder Video Encoding System
Encoded date : UTC 2015-10-03 01:03:18
Tagged date : UTC 2015-10-03 01:03:52

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 5mn 41s
Bit rate mode : Variable
Bit rate : 39.4 Kbps
Maximum bit rate : 53.8 Kbps
Channel(s) : 1 channel
Channel positions : Front: C
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 1.61 MiB (10%)
Encoded date : UTC 2015-10-03 01:03:18
Tagged date : UTC 2015-10-03 01:03:52
Screenshots

Entity Framework in Depth [repost]

Entity Framework in Depth [repost]

Entity Framework in Depth [repost]

Entity Framework in Depth [repost]

Exclusive eLearning Videos ParRus-blogadd to bookmarks

Entity Framework in Depth [repost]