Entity Framework Core In Action, Second Edition, Video Edition

Torrent Details

Entity Framework Core in Action, Second Edition, Video EditionEntity Framework Core in Action, Second Edition, Video Edition

NAME
Entity Framework Core in Action, Second Edition, Video Edition.torrent
CATEGORY
Other
INFOHASH
c5d170d9fa96656e552c800b7ee8d189776e9a7a
SIZE
2.1 GB in 98 files
ADDED
Uploaded on 29-09-2023 by our crawler pet called "Spidey".
SWARM
0 seeders & 0 peers
RATING
No votes yet.

Please login to vote for this torrent.


Description

[ DevCourseWeb.com ] Entity Framework Core in Action, Second Edition, Video Edition



If You Need More Stuff, kindly Visit and Support Us -->> https://DevCourseWeb.com







Released 6/2021

MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch

Genre: eLearning | Language: English | Duration: 19h 15m | Size: 2.12 GB



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...



Image error



Image error

Discussion

Comments 0

Post Your Comment

Files in this torrent

FILENAMESIZE
~Get Your Files Here !/001. Part 1. Getting started.mp46 MB
~Get Your Files Here !/002. Chapter 1. Introduction to Entity Framework Core.mp46.9 MB
~Get Your Files Here !/003. Chapter 1. My “lightbulb moment” with Entity Framework.mp410.4 MB
~Get Your Files Here !/004. Chapter 1. Some words for existing EF6.x developers.mp41.9 MB
~Get Your Files Here !/005. Chapter 1. An overview of EF Core.mp44.2 MB
~Get Your Files Here !/006. Chapter 1. What about NoSQL.mp42.8 MB
~Get Your Files Here !/007. Chapter 1. Your first EF Core application.mp49.8 MB
~Get Your Files Here !/008. Chapter 1. The database that MyFirstEfCoreApp will access.mp45.3 MB
~Get Your Files Here !/009. Chapter 1. Setting up the MyFirstEfCoreApp application.mp47.1 MB
~Get Your Files Here !/010. Chapter 1. Looking under the hood of EF Core.mp440.1 MB
~Get Your Files Here !/011. Chapter 1. The stages of development of EF Core.mp41.9 MB
~Get Your Files Here !/012. Chapter 1. Should you use EF Core in your next project.mp49.1 MB
~Get Your Files Here !/013. Chapter 1. When should you not use EF Core.mp42.1 MB
~Get Your Files Here !/014. Chapter 1. Summary.mp41.8 MB
~Get Your Files Here !/015. Chapter 2. Querying the database.mp437.2 MB
~Get Your Files Here !/016. Chapter 2. Creating the application’s DbContext.mp424.2 MB
~Get Your Files Here !/017. Chapter 2. Understanding database queries.mp47.1 MB
~Get Your Files Here !/018. Chapter 2. Loading related data.mp420 MB
~Get Your Files Here !/019. Chapter 2. Using client vs. server evaluation Adapting data at the last stage of a query.mp47.5 MB
~Get Your Files Here !/020. Chapter 2. Building complex queries.mp415.6 MB
~Get Your Files Here !/021. Chapter 2. Introducing the architecture of the Book App.mp45.3 MB
~Get Your Files Here !/022. Chapter 2. Adding sorting, filtering, and paging.mp416.9 MB
~Get Your Files Here !/023. Chapter 2. Putting it all together Combining Query Objects.mp43.2 MB
~Get Your Files Here !/024. Chapter 2. Summary.mp42.8 MB
~Get Your Files Here !/025. Chapter 3. Changing the database content.mp44.8 MB
~Get Your Files Here !/026. Chapter 3. Creating new rows in a table.mp416 MB
~Get Your Files Here !/027. Chapter 3. Updating database rows.mp429.6 MB
~Get Your Files Here !/028. Chapter 3. Handling relationships in updates.mp468.2 MB
~Get Your Files Here !/029. Chapter 3. Deleting entities.mp413.4 MB
~Get Your Files Here !/030. Chapter 3. Summary.mp43.3 MB
~Get Your Files Here !/031. Chapter 4. Using EF Core in business logic.mp420.5 MB
~Get Your Files Here !/032. Chapter 4. Complex business logic example Processing an order for books.mp42.3 MB
~Get Your Files Here !/033. Chapter 4. Using a design pattern to implement complex business logic.mp46.9 MB
~Get Your Files Here !/034. Chapter 4. Implementing the business logic for processing an order.mp456 MB
~Get Your Files Here !/035. Chapter 4. Simple business logic example ChangePriceOfferService.mp47 MB
~Get Your Files Here !/036. Chapter 4. Validation business logic example Adding review to a book, with checks.mp44.7 MB
~Get Your Files Here !/037. Chapter 4. Adding extra features to your business logic handling.mp442.3 MB
~Get Your Files Here !/038. Chapter 4. Summary.mp41.9 MB
~Get Your Files Here !/039. Chapter 5. Using EF Core in ASP.NET Core web applications.mp44.8 MB
~Get Your Files Here !/040. Chapter 5. Understanding the architecture of the Book App.mp42.3 MB
~Get Your Files Here !/041. Chapter 5. Understanding dependency injection.mp417.2 MB
~Get Your Files Here !/042. Chapter 5. Making the application’s DbContext available via DI.mp410.1 MB
~Get Your Files Here !/043. Chapter 5. Calling your database access code from ASP.NET Core.mp48.7 MB
~Get Your Files Here !/044. Chapter 5. Implementing the book list query page.mp411.6 MB
~Get Your Files Here !/045. Chapter 5. Implementing your database methods as a DI service.mp418.1 MB
~Get Your Files Here !/046. Chapter 5. Deploying an ASP.NET Core application with a database.mp47.7 MB
~Get Your Files Here !/047. Chapter 5. Using EF Core’s migration feature to change the database’s structure.mp413.3 MB
~Get Your Files Here !/048. Chapter 5. Using asyncawait for better scalability.mp49.7 MB
~Get Your Files Here !/049. Chapter 5. Running parallel tasks How to provide the DbContext.mp411 MB
~Get Your Files Here !/050. Chapter 5. Summary.mp43.6 MB
~Get Your Files Here !/051. Chapter 6. Tips and techniques for reading and writing with EF Core.mp470.8 MB
~Get Your Files Here !/052. Chapter 6. Writing to the database with EF Core.mp423.3 MB
~Get Your Files Here !/053. Chapter 6. Summary.mp42.3 MB
~Get Your Files Here !/054. Part 2. Entity Framework in depth.mp43.1 MB
~Get Your Files Here !/055. Chapter 7. Configuring nonrelational properties.mp47.1 MB
~Get Your Files Here !/056. Chapter 7. A worked example of configuring EF Core.mp49.1 MB
~Get Your Files Here !/057. Chapter 7. Configuring by convention.mp49.9 MB
~Get Your Files Here !/058. Chapter 7. Configuring via Data Annotations.mp42.8 MB
~Get Your Files Here !/059. Chapter 7. Configuring via the Fluent API.mp47.4 MB
~Get Your Files Here !/060. Chapter 7. Excluding properties and classes from the database.mp42.8 MB
~Get Your Files Here !/061. Chapter 7. Setting database column type, size, and nullability.mp44.4 MB
~Get Your Files Here !/062. Chapter 7. Value conversions Changing data tofrom the database.mp45.2 MB
~Get Your Files Here !/063. Chapter 7. The different ways of configuring the primary key.mp45.8 MB
~Get Your Files Here !/064. Chapter 7. Adding indexes to database columns.mp42.7 MB
~Get Your Files Here !/065. Chapter 7. Configuring the naming on the database side.mp47.3 MB
~Get Your Files Here !/066. Chapter 7. Configuring Global Query Filters.mp42.2 MB
~Get Your Files Here !/067. Chapter 7. Applying Fluent API commands based on the database provider type.mp44.1 MB
~Get Your Files Here !/068. Chapter 7. Shadow properties Hiding column data inside EF Core.mp47.7 MB
~Get Your Files Here !/069. Chapter 7. Backing fields Controlling access to data in an entity class.mp412.8 MB
~Get Your Files Here !/070. Chapter 7. Recommendations for using EF Core’s configuration.mp422.9 MB
~Get Your Files Here !/071. Chapter 7. Summary.mp43.1 MB
~Get Your Files Here !/072. Chapter 8. Configuring relationships.mp46.8 MB
~Get Your Files Here !/073. Chapter 8. What navigational properties do you need.mp43.4 MB
~Get Your Files Here !/074. Chapter 8. Configuring relationships.mp41.6 MB
~Get Your Files Here !/075. Chapter 8. Configuring relationships By Convention.mp428.3 MB
~Get Your Files Here !/076. Chapter 8. Configuring relationships by using Data Annotations.mp45.3 MB
~Get Your Files Here !/077. Chapter 8. Fluent API relationship configuration commands.mp434.9 MB
~Get Your Files Here !/078. Chapter 8. Controlling updates to collection navigational properties.mp44.5 MB
~Get Your Files Here !/079. Chapter 8. Additional methods available in Fluent API relationships.mp420.7 MB
~Get Your Files Here !/080. Chapter 8. Alternative ways of mapping entities to database tables.mp441.6 MB
~Get Your Files Here !/081. Chapter 8. Summary.mp43.6 MB
~Get Your Files Here !/082. Chapter 9. Handling database migrations.mp44.7 MB
~Get Your Files Here !/083. Chapter 9. Understanding the complexities of changing your application’s database.mp46.3 MB
~Get Your Files Here !/084. Chapter 9. Part 1 Introducing the three approaches to creating a migration.mp45.8 MB
~Get Your Files Here !/085. Chapter 9. Creating a migration by using EF Core’s add migration command.mp444.5 MB
~Get Your Files Here !/086. Chapter 9. Editing an EF Core migration to handle complex situations.mp419.2 MB
~Get Your Files Here !/087. Chapter 9. Using SQL scripts to build migrations.mp422 MB
~Get Your Files Here !/088. Chapter 9. Using EF Core’s reverse-engineering tool.mp418.7 MB
~Get Your Files Here !/089. Chapter 9. Part 2 Applying your migrations to a database.mp428.9 MB
~Get Your Files Here !/090. Chapter 9. Migrating a database while the application is running.mp414.6 MB
~Get Your Files Here !/091. Chapter 9. Summary.mp42.4 MB
~Get Your Files Here !/092. Chapter 10. Configuring advanced features and handling concurrency conflicts.mp425 MB
~Get Your Files Here !/093. Chapter 10. Computed column A dynamically calculated column value.mp47.7 MB
~Get Your Files Here !/094. Chapter 10. Setting a default value for a database column.mp415 MB
~Get Your Files Here !/095. Chapter 10. Sequences Providing numbers in a strict order.mp42.5 MB
~Get Your Files Here !/096. Chapter 10. Marking database-generated properties.mp411.2 MB
~Get Your Files Here !/097. Chapter 10. Handling simultaneous updates Concurrency conflicts.mp470.5 MB
~Get Your Files Here !/098. Chapter 10. Summary.mp42.5 MB

Alternative Torrents for 'Entity Framework Core Action Second Edition Video Edition'.

There are no alternative torrents found.