Companies Home Search Profile

.NET Microservices: CQRS & Event Sourcing with Kafka

Focused View

Sean Campbell

8:30:21

20 View
  • 1. Microservices Basics.mp4
    03:51
  • 2. CQRS.mp4
    02:26
  • 3. Event Sourcing.mp4
    01:21
  • 4. Architecture Overview.mp4
    06:49
  • 5. Apache Kafka.mp4
    01:03
  • 6. Important Concepts Quiz.html
  • 1. Setup & Structure Section Intro.mp4
    00:26
  • 2.1 Installing Prerequisites.txt
  • 2. Prerequisites.mp4
    08:08
  • 3.1 docker-compose.zip
  • 3. Run Kafka in Docker.mp4
    05:39
  • 4.1 Run MongoDB in Docker + Client Tools Download.txt
  • 4. Run MongoDB in Docker.mp4
    02:33
  • 5.1 Run SQL in Docker.txt
  • 5. Run Microsoft SQL in Docker..mp4
    05:06
  • 6.1 Code.zip
  • 6. Basic Project Setup.mp4
    08:58
  • 7.1 Code.zip
  • 7. Adding Project References.mp4
    10:20
  • 8.1 Code.zip
  • 8. Adding NuGet Packages.mp4
    05:20
  • 9.1 Code.zip
  • 9. Setup Debug Configurations (VS Code Only).mp4
    02:51
  • 10. Setup & Structure Quiz.html
  • 1. What is a Command.mp4
    00:54
  • 2.1 Code.zip
  • 2. Commands.mp4
    05:00
  • 3. What is an Event.mp4
    00:30
  • 4.1 Code.zip
  • 4. Events.mp4
    08:22
  • 5. Messages.html
  • 1. The Mediator Pattern.mp4
    03:10
  • 2.1 Code.zip
  • 2. ICommandDispatcher Interface (The Mediator).mp4
    02:46
  • 3.1 Code.zip
  • 3. CommandDispatcher (The Concrete Mediator).mp4
    05:32
  • 4. Command Dispatching Quiz.html
  • 1. What is an Aggregate.mp4
    02:16
  • 2.1 Code.zip
  • 2. AggregateRoot.mp4
    09:50
  • 3.1 Code.zip
  • 3. PostAggregate Part 1.mp4
    12:26
  • 4.1 Code.zip
  • 4. PostAggregate Part 2.mp4
    08:20
  • 5. Aggregates Quiz.html
  • 1. What is an Event Store.mp4
    01:03
  • 2.1 Code.zip
  • 2. EventModel.mp4
    03:22
  • 3.1 Code.zip
  • 3. IEventStoreRepository Interface.mp4
    02:33
  • 4.1 Code.zip
  • 4. EventStoreRepository.mp4
    09:16
  • 5.1 Code.zip
  • 5. IEventStore Interface.mp4
    01:20
  • 6.1 Code.zip
  • 6. EventStore.mp4
    11:26
  • 7.1 Code.zip
  • 7. IEventSourcingHandler Interface.mp4
    01:42
  • 8.1 Code.zip
  • 8. EventSourcingHandler.mp4
    06:54
  • 9. Event Store Quiz.html
  • 1. The Mediator Pattern Continued.mp4
    00:45
  • 2.1 Code.zip
  • 2. ICommandHandler Interface (The Abstract Colleague).mp4
    01:54
  • 3.1 Code.zip
  • 3. CommandHandler (The Concrete Colleague).mp4
    10:06
  • 4.1 Code.zip
  • 4. Register Command Handlers.mp4
    05:08
  • 5. Command Handling Quiz.html
  • 1. Kafka Producer.mp4
    03:18
  • 2.1 Code.zip
  • 2. EventProducer Interface & Implementation.mp4
    10:00
  • 3.1 Code.zip
  • 3. Producing an Event.mp4
    05:33
  • 4. Event Producer Quiz.html
  • 1. Important DDD Concepts.mp4
    01:25
  • 2.1 Code.zip
  • 2. Domain Entities.mp4
    05:27
  • 3.1 Code.zip
  • 3. IPostRepository Interface.mp4
    03:46
  • 4.1 Code.zip
  • 4. ICommentRepository Interface.mp4
    01:46
  • 5. Domain Layer Quiz.html
  • 1. The Read Database.mp4
    00:26
  • 2.1 Code.zip
  • 2. DatabaseContext.mp4
    09:33
  • 3.1 Code.zip
  • 3.2 Create SMUser.txt
  • 3. Programmatically Create DB & Tables on Startup.mp4
    07:43
  • 4.1 Code.zip
  • 4. PostRepository.mp4
    08:26
  • 5.1 Code.zip
  • 5. CommentRepository.mp4
    05:02
  • 6. Read Database Quiz.html
  • 1. Event Handling Introduction.mp4
    00:20
  • 2.1 Code.zip
  • 2. IEventHandler Interface.mp4
    01:42
  • 3.1 Code.zip
  • 3. EventHandler.mp4
    09:42
  • 4. Event Handling Quiz.html
  • 1. Kafka Consumer.mp4
    03:39
  • 2.1 Code.zip
  • 2. IEventConsumer Interface.mp4
    00:38
  • 3.1 Code.zip
  • 3. EventJsonConverter.mp4
    07:48
  • 4.1 Code.zip
  • 4. EventConsumer.mp4
    11:57
  • 5.1 Code.zip
  • 5. ConsumerHostedService.mp4
    06:35
  • 6. Event Consumer Quiz.html
  • 1. Command Controllers Intro.mp4
    00:38
  • 2.1 Code.zip
  • 2. Data Transfer Objects.mp4
    01:24
  • 3.1 Code.zip
  • 3. NewPostController.mp4
    08:29
  • 4.1 Code.zip
  • 4. Creating a New Social Media Post.mp4
    15:04
  • 5.1 Code.zip
  • 5. EditMessageController.mp4
    05:32
  • 6.1 Code.zip
  • 6. Edit Message of a Social Media Post.mp4
    12:08
  • 7.1 Code.zip
  • 7. LikePostController.mp4
    03:24
  • 8.1 Code.zip
  • 8. Like a Social Media Post.mp4
    10:56
  • 9.1 Code.zip
  • 9. AddCommentController.mp4
    03:05
  • 10.1 Code.zip
  • 10. Add a Comment to a Social Media Post.mp4
    11:24
  • 11.1 Code.zip
  • 11. EditCommentController.mp4
    03:19
  • 12.1 Code.zip
  • 12. Edit a Comment on a Social Media Post.mp4
    12:11
  • 13.1 Code.zip
  • 13. RemoveCommentController.mp4
    04:23
  • 14.1 Code.zip
  • 14. Delete a Comment from a Social Media Post.mp4
    11:08
  • 15.1 Code.zip
  • 15. DeletePostController.mp4
    02:56
  • 16.1 Code.zip
  • 16. Deleting a Social Media Post.mp4
    10:20
  • 17. Command Controllers Quiz.html
  • 1. The Mediator Pattern (Query Dispatching).mp4
    01:02
  • 2.1 Code.zip
  • 2. Social Media Queries.mp4
    03:35
  • 3.1 Code.zip
  • 3. IQueryDispatcher Interface (The Mediator).mp4
    03:33
  • 4.1 Code.zip
  • 4. QueryDispatcher (The Concrete Mediator).mp4
    05:44
  • 5. Queries & Query Dispatching Quiz.html
  • 1. Query Handling Introduction.mp4
    00:22
  • 2.1 Code.zip
  • 2. IQueryHandler Interface (The Abstract Colleague).mp4
    01:44
  • 3.1 Code.zip
  • 3. QueryHandler (The Concrete Colleague).mp4
    04:28
  • 4.1 Code.zip
  • 4. Register Query Handlers.mp4
    04:24
  • 5. Query Handling Quiz.html
  • 1. Query Controller Intro.mp4
    00:17
  • 2.1 Code.zip
  • 2. Data Transfer Objects.mp4
    01:13
  • 3.1 Code.zip
  • 3. PostLookupController Part 1.mp4
    09:58
  • 4.1 Code.zip
  • 4. PostLookupController Part 2.mp4
    08:59
  • 5.1 Code.zip
  • 5. Testing the PostLookupController.mp4
    16:48
  • 6. Query Controller Quiz.html
  • 1. Powerful Ending Intro.mp4
    00:40
  • 2.1 Code.zip
  • 2. Create Functionality to Restore the Read Database.mp4
    12:27
  • 3.1 Code.zip
  • 3. Restore the Entire Read Database.mp4
    20:05
  • 4.1 Code.zip
  • 4. Rapidly Change the Read Database Type.mp4
    14:05
  • 5. Congratulations.mp4
    00:24
  • Description


    Learn how to create microservices in C# that are based on CQRS and Event Sourcing. Powered by .NET and Apache Kafka.

    What You'll Learn?


    • CQRS
    • Event Sourcing
    • How to Create Microservices in C# with .NET
    • Creating DDD-Oriented Microservices
    • Using Apache Kafka as a Message Bus
    • Creating an Event Store with MongoDB
    • Optimistic Concurrency Control
    • Event Versioning
    • Using Microsoft SQL to Implement the Read Database
    • Replay the Event Store and Recreate the State of the Aggregate
    • Replay the Event Store and Recreate the Entire Read Database
    • Replay the Event Store and Recreate the Read Database in a Different Database Type - PostgreSQL
    • Implementing the Database-Per-Service Pattern
    • Entity Framework Core (MS SQL and PostgreSQL)
    • Dependency Injection
    • Docker

    Who is this for?


  • Software Engineers
  • Software Developers
  • Software Architects
  • Cloud Engineers
  • Solution Architects
  • What You Need to Know?


  • Some experience with C# is essential
  • More details


    Description

    In this course, you will learn how to create .NET microservices that comply with the CQRS and Event Sourcing patterns.

    You will not use any CQRS framework, but you will write every line of code that is required to effectively create your own CQRS and Event Sourcing framework using C# and Apache Kafka. While this might sound a little daunting, you will be carefully guided step by step, and gain all the know-how and confidence to become an expert in CQRS and Event Sourcing.

    By the end of this course, you will know how to:

    • Handle commands and raise events.

    • Use the mediator pattern to implement command and query dispatchers.

    • Create and change the state of an aggregate with event messages.

    • Implement an event store / write database in MongoDB.

    • Create a read database in MS SQL.

    • Apply event versioning.

    • Implement optimistic concurrency control.

    • Produce events to Apache Kafka.

    • Consume events from Apache Kafka to populate and alter records in the read database.

    • Replay the event store and recreate the state of the aggregate.

    • Separate read and write concerns.

    • Structure your code using Domain-Driven-Design best practices.

    • Replay the event store to recreate the entire read database.

    • Replay the event store to recreate the entire read database into a different database type - PostgreSQL.

    The ultimate goal of this course is to take a deep-dive into the world of CQRS and Event Sourcing to enable you to create microservices that are super decoupled and extremely scalable.

    Who this course is for:

    • Software Engineers
    • Software Developers
    • Software Architects
    • Cloud Engineers
    • Solution Architects

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Sean Campbell
    Sean Campbell
    Instructor's Courses
    Sean Campbell is a highly experienced Software Engineer, specializing in software development for over 17 years. He holds a Master of Science in Software Engineering degree and is particularly interested in software architecture, design patterns, engineering best practices (like SOLID principles), technical documentation, and AI. Sean has held Senior Software Engineer and Technical Lead roles in various industries, including security, mining, insurance, and affiliate marketing. He is an enthusiastic advocate of knowledge sharing and empowering others to become exceptional Software Engineers. Sean has a unique talent for simplifying complex topics to make them practical and easy to understand for anyone.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 91
    • duration 8:30:21
    • English subtitles has
    • Release Date 2024/03/11

    Courses related to Microservices