17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Entity Framework Core In Action, Second Edition, Video Edition
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
Entity Framework Core in Action, Second Edition is an in-depth guide to reading and writing databases with EF Core
Entity Framework Core in Action, Second Edition is an in-depth guide to reading and writing databases with EF Core. Revised from the bestselling original edition, it’s filled with over 100 diagrams, code snippets, and examples—including building and scaling your own bookselling web application. Learn from author Jon Smith’s extensive experience working with EF Core in production, as you discover time-saving patterns and best practices for security, performance tuning, and unit testing. All of the book’s code is available on GitHub.
About the Technology
Entity Framework radically simplifies data access in .NET applications. This easy-to-use object-relational mapper (ORM) lets you write database code in pure C#. It automatically maps classes to database tables and enables queries with standard LINQ commands. It even generates SQL, so you don’t have to!
If You Need More Stuff, kindly Visit and Support Us -->> https://CourseWikia.com
Get More Tutorials and Support Us -->> https://FreeCourseWeb.com
We upload these learning materials for the people from all over the world, who have the talent and motivation to sharpen their skills/ knowledge but do not have the financial support to afford the materials. If you like this content and if you are truly in a position that you can actually buy the materials, then Please, we repeat, Please, Support Authors. They Deserve it! Because always remember, without "Them", you and we won't be here having this conversation. Think about it! Peace...
VISITOR COMMENTS (0 )
FILE LIST
Filename
Size
~Get Your Files Here !/001. Part 1. Getting started.mp4
6 MB
~Get Your Files Here !/002. Chapter 1. Introduction to Entity Framework Core.mp4
6.9 MB
~Get Your Files Here !/003. Chapter 1. My “lightbulb moment” with Entity Framework.mp4
10.4 MB
~Get Your Files Here !/004. Chapter 1. Some words for existing EF6.x developers.mp4
1.9 MB
~Get Your Files Here !/005. Chapter 1. An overview of EF Core.mp4
4.2 MB
~Get Your Files Here !/006. Chapter 1. What about NoSQL.mp4
2.8 MB
~Get Your Files Here !/007. Chapter 1. Your first EF Core application.mp4
9.8 MB
~Get Your Files Here !/008. Chapter 1. The database that MyFirstEfCoreApp will access.mp4
5.3 MB
~Get Your Files Here !/009. Chapter 1. Setting up the MyFirstEfCoreApp application.mp4
7.1 MB
~Get Your Files Here !/010. Chapter 1. Looking under the hood of EF Core.mp4
40.1 MB
~Get Your Files Here !/011. Chapter 1. The stages of development of EF Core.mp4
1.9 MB
~Get Your Files Here !/012. Chapter 1. Should you use EF Core in your next project.mp4
9.1 MB
~Get Your Files Here !/013. Chapter 1. When should you not use EF Core.mp4
2.1 MB
~Get Your Files Here !/014. Chapter 1. Summary.mp4
1.8 MB
~Get Your Files Here !/015. Chapter 2. Querying the database.mp4
37.2 MB
~Get Your Files Here !/016. Chapter 2. Creating the application’s DbContext.mp4
24.2 MB
~Get Your Files Here !/017. Chapter 2. Understanding database queries.mp4
7.1 MB
~Get Your Files Here !/018. Chapter 2. Loading related data.mp4
20 MB
~Get Your Files Here !/019. Chapter 2. Using client vs. server evaluation Adapting data at the last stage of a query.mp4
7.5 MB
~Get Your Files Here !/020. Chapter 2. Building complex queries.mp4
15.6 MB
~Get Your Files Here !/021. Chapter 2. Introducing the architecture of the Book App.mp4
5.3 MB
~Get Your Files Here !/022. Chapter 2. Adding sorting, filtering, and paging.mp4
16.9 MB
~Get Your Files Here !/023. Chapter 2. Putting it all together Combining Query Objects.mp4
3.2 MB
~Get Your Files Here !/024. Chapter 2. Summary.mp4
2.8 MB
~Get Your Files Here !/025. Chapter 3. Changing the database content.mp4
4.8 MB
~Get Your Files Here !/026. Chapter 3. Creating new rows in a table.mp4
16 MB
~Get Your Files Here !/027. Chapter 3. Updating database rows.mp4
29.6 MB
~Get Your Files Here !/028. Chapter 3. Handling relationships in updates.mp4
68.2 MB
~Get Your Files Here !/029. Chapter 3. Deleting entities.mp4
13.4 MB
~Get Your Files Here !/030. Chapter 3. Summary.mp4
3.3 MB
~Get Your Files Here !/031. Chapter 4. Using EF Core in business logic.mp4
20.5 MB
~Get Your Files Here !/032. Chapter 4. Complex business logic example Processing an order for books.mp4
2.3 MB
~Get Your Files Here !/033. Chapter 4. Using a design pattern to implement complex business logic.mp4
6.9 MB
~Get Your Files Here !/034. Chapter 4. Implementing the business logic for processing an order.mp4
56 MB
~Get Your Files Here !/035. Chapter 4. Simple business logic example ChangePriceOfferService.mp4
7 MB
~Get Your Files Here !/036. Chapter 4. Validation business logic example Adding review to a book, with checks.mp4
4.7 MB
~Get Your Files Here !/037. Chapter 4. Adding extra features to your business logic handling.mp4
42.3 MB
~Get Your Files Here !/038. Chapter 4. Summary.mp4
1.9 MB
~Get Your Files Here !/039. Chapter 5. Using EF Core in ASP.NET Core web applications.mp4
4.8 MB
~Get Your Files Here !/040. Chapter 5. Understanding the architecture of the Book App.mp4
2.3 MB
~Get Your Files Here !/041. Chapter 5. Understanding dependency injection.mp4
17.2 MB
~Get Your Files Here !/042. Chapter 5. Making the application’s DbContext available via DI.mp4
10.1 MB
~Get Your Files Here !/043. Chapter 5. Calling your database access code from ASP.NET Core.mp4
8.7 MB
~Get Your Files Here !/044. Chapter 5. Implementing the book list query page.mp4
11.6 MB
~Get Your Files Here !/045. Chapter 5. Implementing your database methods as a DI service.mp4
18.1 MB
~Get Your Files Here !/046. Chapter 5. Deploying an ASP.NET Core application with a database.mp4
7.7 MB
~Get Your Files Here !/047. Chapter 5. Using EF Core’s migration feature to change the database’s structure.mp4
13.3 MB
~Get Your Files Here !/048. Chapter 5. Using asyncawait for better scalability.mp4
9.7 MB
~Get Your Files Here !/049. Chapter 5. Running parallel tasks How to provide the DbContext.mp4
11 MB
~Get Your Files Here !/050. Chapter 5. Summary.mp4
3.6 MB
~Get Your Files Here !/051. Chapter 6. Tips and techniques for reading and writing with EF Core.mp4
70.8 MB
~Get Your Files Here !/052. Chapter 6. Writing to the database with EF Core.mp4
23.3 MB
~Get Your Files Here !/053. Chapter 6. Summary.mp4
2.3 MB
~Get Your Files Here !/054. Part 2. Entity Framework in depth.mp4
3.1 MB
~Get Your Files Here !/055. Chapter 7. Configuring nonrelational properties.mp4
7.1 MB
~Get Your Files Here !/056. Chapter 7. A worked example of configuring EF Core.mp4
9.1 MB
~Get Your Files Here !/057. Chapter 7. Configuring by convention.mp4
9.9 MB
~Get Your Files Here !/058. Chapter 7. Configuring via Data Annotations.mp4
2.8 MB
~Get Your Files Here !/059. Chapter 7. Configuring via the Fluent API.mp4
7.4 MB
~Get Your Files Here !/060. Chapter 7. Excluding properties and classes from the database.mp4
2.8 MB
~Get Your Files Here !/061. Chapter 7. Setting database column type, size, and nullability.mp4
4.4 MB
~Get Your Files Here !/062. Chapter 7. Value conversions Changing data tofrom the database.mp4
5.2 MB
~Get Your Files Here !/063. Chapter 7. The different ways of configuring the primary key.mp4
5.8 MB
~Get Your Files Here !/064. Chapter 7. Adding indexes to database columns.mp4
2.7 MB
~Get Your Files Here !/065. Chapter 7. Configuring the naming on the database side.mp4
7.3 MB
~Get Your Files Here !/066. Chapter 7. Configuring Global Query Filters.mp4
2.2 MB
~Get Your Files Here !/067. Chapter 7. Applying Fluent API commands based on the database provider type.mp4
4.1 MB
~Get Your Files Here !/068. Chapter 7. Shadow properties Hiding column data inside EF Core.mp4
7.7 MB
~Get Your Files Here !/069. Chapter 7. Backing fields Controlling access to data in an entity class.mp4
12.8 MB
~Get Your Files Here !/070. Chapter 7. Recommendations for using EF Core’s configuration.mp4
22.9 MB
~Get Your Files Here !/071. Chapter 7. Summary.mp4
3.1 MB
~Get Your Files Here !/072. Chapter 8. Configuring relationships.mp4
6.8 MB
~Get Your Files Here !/073. Chapter 8. What navigational properties do you need.mp4
3.4 MB
~Get Your Files Here !/074. Chapter 8. Configuring relationships.mp4
1.6 MB
~Get Your Files Here !/075. Chapter 8. Configuring relationships By Convention.mp4
28.3 MB
~Get Your Files Here !/076. Chapter 8. Configuring relationships by using Data Annotations.mp4
5.3 MB
~Get Your Files Here !/077. Chapter 8. Fluent API relationship configuration commands.mp4
34.9 MB
~Get Your Files Here !/078. Chapter 8. Controlling updates to collection navigational properties.mp4
4.5 MB
~Get Your Files Here !/079. Chapter 8. Additional methods available in Fluent API relationships.mp4
20.7 MB
~Get Your Files Here !/080. Chapter 8. Alternative ways of mapping entities to database tables.mp4
41.6 MB
~Get Your Files Here !/081. Chapter 8. Summary.mp4
3.6 MB
~Get Your Files Here !/082. Chapter 9. Handling database migrations.mp4
4.7 MB
~Get Your Files Here !/083. Chapter 9. Understanding the complexities of changing your application’s database.mp4
6.3 MB
~Get Your Files Here !/084. Chapter 9. Part 1 Introducing the three approaches to creating a migration.mp4
5.8 MB
~Get Your Files Here !/085. Chapter 9. Creating a migration by using EF Core’s add migration command.mp4
44.5 MB
~Get Your Files Here !/086. Chapter 9. Editing an EF Core migration to handle complex situations.mp4
19.2 MB
~Get Your Files Here !/087. Chapter 9. Using SQL scripts to build migrations.mp4
22 MB
~Get Your Files Here !/088. Chapter 9. Using EF Core’s reverse-engineering tool.mp4
18.7 MB
~Get Your Files Here !/089. Chapter 9. Part 2 Applying your migrations to a database.mp4
28.9 MB
~Get Your Files Here !/090. Chapter 9. Migrating a database while the application is running.mp4
14.6 MB
~Get Your Files Here !/091. Chapter 9. Summary.mp4
2.4 MB
~Get Your Files Here !/092. Chapter 10. Configuring advanced features and handling concurrency conflicts.mp4
25 MB
~Get Your Files Here !/093. Chapter 10. Computed column A dynamically calculated column value.mp4
7.7 MB
~Get Your Files Here !/094. Chapter 10. Setting a default value for a database column.mp4
15 MB
~Get Your Files Here !/095. Chapter 10. Sequences Providing numbers in a strict order.mp4
2.5 MB
~Get Your Files Here !/096. Chapter 10. Marking database-generated properties.mp4
11.2 MB
~Get Your Files Here !/097. Chapter 10. Handling simultaneous updates Concurrency conflicts.mp4
70.5 MB
~Get Your Files Here !/098. Chapter 10. Summary.mp4