Netcode-Hub
Netcode-Hub
  • 307
  • 955 118
Transform Your Testing!🙋‍♂️ Master .NET 8 Unit Testing HTTP Services with XUnit in Web API!🔥
🔹Unit testing in .NET is a software testing method where individual units or components of a software application are tested in isolation from the rest of the application. The goal is to validate that each unit of the software performs as expected. Units in this context typically refer to the smallest testable parts of an application, such as functions, methods, or classes.
In this video, I will walk you through the step-by-step process of integrating Unit Testing into your .NET Web API.🎉
Are you looking for Coding Mentoring? If you're seeking personalized guidance and mentoring for your coding journey, then get in touch!. I offer expert guidance and support to help you level up your programming skills. Contact me on business.netcodehub@gmail.com to book a session and accelerate your coding career.
/*Grab source code*/
buymeacoffee.com/netcodehub/e/274436
/*Playlist*/
th-cam.com/play/PL285LgYq_FoLSfC4889V_S-sMoNOm9mxE.html
/*Reference*/
fakeiteasy.github.io/docs/8.3.0/Recipes/faking-http-client/
/*Related*/
1. End Manual Testing🙋‍♂️, Welcome Automation!👋 Master .NET Unit Testing Controller with FakeItEasy & XUnit!🔥th-cam.com/video/2tmzKDlT0Es/w-d-xo.html
2. End Manual Testing🙋‍♂️, Master .NET 8 Unit Testing Repositories with XUnit in Web API!🔥th-cam.com/video/NywEYZ2RU5U/w-d-xo.html
3. End Manual Testing🙋‍♂️, Master .NET 8 Unit Testing HTTP Services with XUnit in Web API!🔥th-cam.com/video/2BYpgphxZx4/w-d-xo.html
# Here's a follow-up section to encourage engagement and support for Netcode-Hub:
🌟 Get in touch with Netcode-Hub! 📫
1. GitHub: (github.com/Netcode-Hub) 🌐
2. Twitter: ( NetcodeHub) 🐦
3. Facebook: (web. NetcodeHub) 📘
4. LinkedIn: (www.linkedin.com/in/netcode-hub-90b188258/) 🔗
5. Email: [business.netcodehub@gmail.com]📧
# ☕️ If you've found value in Netcode-Hub's work, consider supporting the channel with a coffee!
Buy Me a Coffee: (www.buymeacoffee.com/NetcodeHub) ☕️
มุมมอง: 81

วีดีโอ

Say Goodbye to Manual Testing🙋‍♂️, Hello .NET 8 Unit Testing for Repositories with XUnit!🔥
มุมมอง 1712 ชั่วโมงที่ผ่านมา
🔹Unit testing in .NET is a software testing method where individual units or components of a software application are tested in isolation from the rest of the application. The goal is to validate that each unit of the software performs as expected. Units in this context typically refer to the smallest testable parts of an application, such as functions, methods, or classes. In this video, I wil...
End Manual Testing🙋‍♂️, Welcome Automation!👋 Master .NET 8 Unit Testing with XUnit in Web API🔥
มุมมอง 2664 ชั่วโมงที่ผ่านมา
🔹Unit testing in .NET is a software testing method where individual units or components of a software application are tested in isolation from the rest of the application. The goal is to validate that each unit of the software performs as expected. Units in this context typically refer to the smallest testable parts of an application, such as functions, methods, or classes. In this video, I wil...
🚀 Unlock Secure APIs: Real-World 🌐 Example of Custom Middleware Authentication in .NET 8 Web API 🔐
มุมมอง 4327 ชั่วโมงที่ผ่านมา
🔹Middleware in .NET is software that's assembled into an application pipeline to handle requests and responses. Each component in the pipeline has the ability to: Process Requests: Perform actions on the incoming HTTP request before passing it to the next component. Process Responses: Perform actions on the outgoing HTTP response before sending it back to the client. Architectures where data mi...
Farewell HttpClient 🙋‍♂️, Hello Refit! 👋 Master .NET API Calls with Zero Implementation Needed!🌟🔥
มุมมอง 4609 ชั่วโมงที่ผ่านมา
🔹Refit is a type-safe REST client library for .NET. In simple terms, it helps you make API calls in your applications without having to write a lot of boilerplate code. You define your API endpoints as interfaces, and Refit automatically generates the necessary code to make HTTP requests. This makes it easier and quicker to connect to web services and handle responses in a consistent and organi...
Goodbye Complexity🙋‍♂️, Hello Middleware Magic👋! Supercharge Your .NET 8 Web API Like a Pro!🚀🔥
มุมมอง 1K12 ชั่วโมงที่ผ่านมา
🔹Middleware in .NET is software that's assembled into an application pipeline to handle requests and responses. Each component in the pipeline has the ability to: Process Requests: Perform actions on the incoming HTTP request before passing it to the next component. Process Responses: Perform actions on the outgoing HTTP response before sending it back to the client. Architectures where data mi...
Break Free from Single DB Limits! 🙌 Connect SQLite & SQL Server in Your .NET 8 Web API Like a Pro!🚀🔥
มุมมอง 45514 ชั่วโมงที่ผ่านมา
🔹In the context of a .NET Web API, a "single database" typically refers to an architecture where the application uses one centralized database to store and manage all its data. This is in contrast to more complex architectures where data might be distributed across multiple databases. 🔹In the context of a .NET Web API, "multiple databases" refers to an architecture where the application interac...
End DI Hassle Now! with .NET 8 Enhancements👋! Master Multiple Service Implementations Like a Pro!🌟🔥
มุมมอง 32416 ชั่วโมงที่ผ่านมา
🔹Dependency Injection (DI) in .NET Web API is a design pattern and technique that facilitates Inversion of Control (IoC) by managing dependencies between classes. Instead of classes creating their own instances, DI allows these instances to be injected into the classes, enhancing flexibility, testability, and maintainability. Are you looking for Coding Mentoring? If you're seeking personalized ...
End Stuck Tasks Now!🙋‍♂️ Effortlessly Cancel Blazor Background Tasks with Netcode-Hub's Magic!✨🚀
มุมมอง 32719 ชั่วโมงที่ผ่านมา
🔹In Blazor, a background task is any operation that runs asynchronously in the background while the main thread continues to execute other code. Background tasks are often used for operations that might take a significant amount of time, such as making HTTP requests, performing I/O operations, or running long computations, without blocking the user interface. In this video, we will look at very...
🚀 Master Blazor Forms with NuGet Package! Simplify EditForm Validation on Init in .NET 8 Blazor 🔥
มุมมอง 61321 ชั่วโมงที่ผ่านมา
🔹Blazor forms are a component of Blazor, a web framework for building interactive web applications using C# and .NET. In Blazor, forms are used to handle user input, validation, and submission of data. They are similar to HTML forms but are enhanced with Blazor's capabilities, making them more powerful and flexible. 🔹Validation in Blazor forms ensures that user inputs meet certain criteria befo...
Boost Your .NET 8 Web API 🚀: Master Health Checks for Reliability in APIs, Databases, & Services 🔥
มุมมอง 561วันที่ผ่านมา
🔹Health checks in .NET Web API are tools to monitor the health and status of an application and its dependencies (like databases and external services). They ensure the application is working correctly and help detect issues early. This will video will take you through ways of configuring heath checks for databases, APIs and external services. Are you looking for Coding Mentoring? If you're see...
Goodbye HttpClient🙋‍♂️, Hello RestSharp👋! Making .NET API Calls the Easy Way Like a Pro!🌠🔥
มุมมอง 831วันที่ผ่านมา
🔹HttpClient is a class provided by the .NET framework used for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. It is a key component in .NET for making network calls to web services or APIs. 🔹RestSharp is a popular open-source HTTP client library for .NET that simplifies the process of making HTTP requests and interacting with RESTful APIs. It provides an...
Boost Your .NET Web API with Controller Filters🌠: How and Why You Should Use Them!🔥 | Ultimate Guide
มุมมอง 468วันที่ผ่านมา
🔹In .NET Web API, controller filters are a type of filter that apply to controller actions. Filters are used to run custom pre- and post-processing logic for action methods. They can be applied globally, at the controller level, or at the action level. 🔹Controller filters allow you to inject custom processing logic into the request handling pipeline. By creating and applying these filters, you ...
Master Secrets Management🌠: Read & Write Data to Environment Variables, User Secrets, & Vault🔥
มุมมอง 482วันที่ผ่านมา
🔹Environment variables are key-value pairs stored outside the source code and can be accessed by the application at runtime. They are platform-independent and can be used across different operating systems. 🔹User Secrets is a tool provided by Microsoft for storing sensitive information locally during development, particularly for .NET applications. 🔹Vault is an open-source tool for securely acc...
Seamless SqlServer Integration🌠 : Connecting to .NET 8 Web API With Installer & Docker Container 🔥
มุมมอง 43714 วันที่ผ่านมา
SQL Server, or Microsoft SQL Server, is a relational database management system (RDBMS) developed by Microsoft. It is designed to store and manage a large amount of data while providing the necessary tools to retrieve, manage, and manipulate that data efficiently. 🔹 Tools You'll Need: 1. PostgreSQL (Download and installation guide provided) 2. .NET SDK (Ensure you have the latest version) 3. Vi...
Seamless PostgreSQL Integration🌠 : Connecting to .NET 8 Web API With Installer & Docker Container 🔥
มุมมอง 33214 วันที่ผ่านมา
Seamless PostgreSQL Integration🌠 : Connecting to .NET 8 Web API With Installer & Docker Container 🔥
Master .NET 8 Web APIs🌠 : Guide to Manually Implementing Request Timeouts for Better Performance 🔥
มุมมอง 32714 วันที่ผ่านมา
Master .NET 8 Web APIs🌠 : Guide to Manually Implementing Request Timeouts for Better Performance 🔥
Mastering JSON in .NET : Serialization and Deserialization 🌠 with JsonConvert and JsonSerializer 🔥
มุมมอง 42914 วันที่ผ่านมา
Mastering JSON in .NET : Serialization and Deserialization 🌠 with JsonConvert and JsonSerializer 🔥
Mastering AppSettings Config File 🔥: Reading Configuration in Blazor & Web API with .NET 8 IOptions🌠
มุมมอง 38814 วันที่ผ่านมา
Mastering AppSettings Config File 🔥: Reading Configuration in Blazor & Web API with .NET 8 IOptions🌠
Enhanced Data Annotations for Superior Data Validation & Clean Code 🔥 - Newly Introduced in .NET 8 🌠
มุมมอง 53921 วันที่ผ่านมา
Enhanced Data Annotations for Superior Data Validation & Clean Code 🔥 - Newly Introduced in .NET 8 🌠
SignalR in .NET 8 Blazor Wasm & Web API : Create Hub Service, Group and Individual Messaging🔥
มุมมอง 71521 วันที่ผ่านมา
SignalR in .NET 8 Blazor Wasm & Web API : Create Hub Service, Group and Individual Messaging🔥
Effortless SignalR Integration in .NET 8 : Individual Messaging in Blazor WebAssembly and Web API🔥
มุมมอง 31821 วันที่ผ่านมา
Effortless SignalR Integration in .NET 8 : Individual Messaging in Blazor WebAssembly and Web API🔥
Effortless SignalR Integration in .NET 8: Sending Group Messages in Blazor WebAssembly and Web API🔥
มุมมอง 57621 วันที่ผ่านมา
Effortless SignalR Integration in .NET 8: Sending Group Messages in Blazor WebAssembly and Web API🔥
Effortless SignalR in .NET 8 Blazor WebAssembly : Real-Time Client Notifications on New Connections🔥
มุมมอง 90528 วันที่ผ่านมา
Effortless SignalR in .NET 8 Blazor WebAssembly : Real-Time Client Notifications on New Connections🔥
Comprehensive Event Logging in .NET 8 Web API Console, Debug, File, and Elasticsearch with Kibana 🔥
มุมมอง 693หลายเดือนก่อน
Comprehensive Event Logging in .NET 8 Web API Console, Debug, File, and Elasticsearch with Kibana 🔥
Completely Build Robust & Resilient .NET 8 Web API - Apply Timeout, Retry, Hedging etc.. Strategies🔥
มุมมอง 919หลายเดือนก่อน
Completely Build Robust & Resilient .NET 8 Web API - Apply Timeout, Retry, Hedging etc.. Strategies🔥
Implementing InMemory Caching (Output Cache) and Distributed Caching (Redis) in .NET 8 Web API🔥
มุมมอง 587หลายเดือนก่อน
Implementing InMemory Caching (Output Cache) and Distributed Caching (Redis) in .NET 8 Web API🔥
Build Robust & Resilient .NET 8 API - Implement Retry, Timeout, Fallback, Hedging, Circuit Breaker 🔥
มุมมอง 1.1Kหลายเดือนก่อน
Build Robust & Resilient .NET 8 API - Implement Retry, Timeout, Fallback, Hedging, Circuit Breaker 🔥
Complete Inventory Management System with .NET 8 Blazor - CRUD, Export to PDF, EXCEL, Print, etc...🔥
มุมมอง 4Kหลายเดือนก่อน
Complete Inventory Management System with .NET 8 Blazor - CRUD, Export to PDF, EXCEL, Print, etc...🔥
Seamlessly Integrate UI Template into Your .NET 8 Blazor Application for Modern Web Development 🔥
มุมมอง 2Kหลายเดือนก่อน
Seamlessly Integrate UI Template into Your .NET 8 Blazor Application for Modern Web Development 🔥

ความคิดเห็น

  • @bachhuynh1562
    @bachhuynh1562 10 ชั่วโมงที่ผ่านมา

    mudblazor will help u better UI

    • @Netcode-Hub
      @Netcode-Hub 10 ชั่วโมงที่ผ่านมา

      😃

  • @razakalsharafy4708
    @razakalsharafy4708 วันที่ผ่านมา

    One of the Best 🌟🌟🌟✨✨

    • @Netcode-Hub
      @Netcode-Hub วันที่ผ่านมา

      Thanks 😊

  • @xerxesking6734
    @xerxesking6734 วันที่ผ่านมา

    helpful, thanks

    • @Netcode-Hub
      @Netcode-Hub วันที่ผ่านมา

      Glad it was helpful!

  • @juliochan10
    @juliochan10 2 วันที่ผ่านมา

    Identity in the domain layer?

    • @Netcode-Hub
      @Netcode-Hub วันที่ผ่านมา

      D you have any issue with that?

  • @hoangcu9093
    @hoangcu9093 2 วันที่ผ่านมา

    i have a question🤔. I have to pay 100$ for the source code?

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      😃 Yes , well if you have any issue , kindly mail me. Thanks

  • @waynehawkins654
    @waynehawkins654 2 วันที่ผ่านมา

    Oh man - I just got this code, and it also has errors. I created a user in the API and it not building the Roles. If you sell it, you got to check it works.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      Did you perform migration ?

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      What error did you encounter ?

    • @waynehawkins654
      @waynehawkins654 2 วันที่ผ่านมา

      @@Netcode-Hub Yes, database is all good. No errors, it simple did not created the roles. Adds the user but no roles. It was getting super late so did not dig deep in the problem.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      @@waynehawkins654 Ohk Do so and alert me

  • @waynehawkins654
    @waynehawkins654 2 วันที่ผ่านมา

    Ok, I will give this video a go as I yet to get a JWT work in a API. I sign in, and I always get a 404 - not found error from the API for a Authorize GET.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      Did you receive the token after registration and login? If you have any issue running the it, kindly push it to GitHub and send the link to me so I check. The code works fine though.

    • @waynehawkins654
      @waynehawkins654 2 วันที่ผ่านมา

      @@Netcode-Hub Yes this one I can send the code too. I trying to just get the API working first. I sign in, I get the token from the API. I then copy and use this to log in, and always a 404 error. Will get the link to you soon.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      @waynehawkins654 alright

    • @Netcode-Hub
      @Netcode-Hub 2 ชั่วโมงที่ผ่านมา

      # Problem Solved # Issue : protected override async Task OnInitializedAsync() { // Vehicles = await vehicleService.GetVehicles(); // VehicleBrands = await vehicleService.GetVehicleBrands(); // VehicleOwners = await vehicleService.GetVehicleOwners(); } You are calling Vehicle service whiles the service does not exist. comment will make the app restored. Kindly check you mail.

  • @waynehawkins654
    @waynehawkins654 2 วันที่ผ่านมา

    Hay Netcode-Hub. FYI - the Toast and Datagrid has a bug when you use current version. If I go back to 1.0.0 error goes away.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      There will be a video on the current versions soon. Thanks for this

    • @waynehawkins654
      @waynehawkins654 2 วันที่ผ่านมา

      @@Netcode-Hub Great, then I hope I get the new code for free as it's a upgrade and I only just paid for this.

    • @Netcode-Hub
      @Netcode-Hub 10 ชั่วโมงที่ผ่านมา

      😃 don’t worry. Kindly mail me.

  • @AliHassan-wc6nb
    @AliHassan-wc6nb 2 วันที่ผ่านมา

    You are doing a great job man!

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      Thanks 🙏

  • @AliHassan-wc6nb
    @AliHassan-wc6nb 2 วันที่ผ่านมา

    Can you make a crud application, with logging, try catch blocks, with data grid and two tables with parent child relation. Then create report based on data. With Web api and blazor, with all they advance things in your advance Playlist. It is difficult to comprehend so much knowledge in bits and pieces (or in different videos).

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      😃 If you need any assistance kindly mail me

  • @AliM-x3i
    @AliM-x3i 2 วันที่ผ่านมา

    Great video ❤ What was your db???

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      SqlServer

  • @volkerbusch4138
    @volkerbusch4138 3 วันที่ผ่านมา

    Thank you very much for this video, it is really awesome. What do I have to change so that I can use the service from Windows? In Windows I get System.InvalidOperationException: "No service for type 'DemoMauiAppToEnpoint.IPlatformHttpMessageHandler' has been registered." Please can you post the Messagehandler, that i need?

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      Thanks.😀 Are you talking about Windows forms or Maui Desktop app?

  • @panda3131
    @panda3131 3 วันที่ผ่านมา

    how to manually refresh data with button?

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      Bind button event to button through the UI. Call service. Make sure the page is interactive, create service for data retrieval... mail me if you need assistance in doing that.

  • @AthelstanEngland
    @AthelstanEngland 4 วันที่ผ่านมา

    Instead of creating a cart button component and making it ServerInteractive could you not just have made the ProductsList page/component ServerInteractive itself? Is there any advantage in leaving that StreamRendering?

    • @Netcode-Hub
      @Netcode-Hub 4 วันที่ผ่านมา

      Streaming rendering initially renders the entire page quickly with placeholder content while asynchronous operations execute. After the operations are complete, the updated content is sent to the client on the same response connection and patched into the DOM. This approach provides a smoother user experience by showing partial content early and progressively enhancing it.

    • @AthelstanEngland
      @AthelstanEngland 4 วันที่ผ่านมา

      @@Netcode-Hub ok smashing thanks for the heads up.

  • @nguyenvovan7702
    @nguyenvovan7702 4 วันที่ผ่านมา

    I'm having a problem at 1:22:20, the reason is when I add data it returns 200 and true but when I check the database the data hasn't been added yet, I hope you can help.

    • @Netcode-Hub
      @Netcode-Hub 4 วันที่ผ่านมา

      Then check your repository To be specific Add function Debug it point to point

  • @manhalshiha
    @manhalshiha 4 วันที่ผ่านมา

    Some operations were not shown in the video, such as display confirmation box for delete and update

    • @Netcode-Hub
      @Netcode-Hub 4 วันที่ผ่านมา

      Take your time and go through , everything is visible

  • @dattatrayarsule3089
    @dattatrayarsule3089 5 วันที่ผ่านมา

    What are the required stylesheets link need to add in app.razor file. UI is not loading as expected

    • @Netcode-Hub
      @Netcode-Hub 5 วันที่ผ่านมา

      This video will guide you Seamlessly Integrate UI Template into Your .NET 8 Blazor Application for Modern Web Development 🔥 th-cam.com/video/4RsCO6cij_I/w-d-xo.html

  • @encryptor6710
    @encryptor6710 5 วันที่ผ่านมา

    Its spelled "Hi", not "Hy".

    • @Netcode-Hub
      @Netcode-Hub 5 วันที่ผ่านมา

      Alright English Master. Thanks ☺️

  • @perdom024
    @perdom024 5 วันที่ผ่านมา

    Do you have a video about to apply those policies in Blazor standalone app?

    • @Netcode-Hub
      @Netcode-Hub 5 วันที่ผ่านมา

      Yes, check this playlist .NET 8 Blazor Inventory Management System th-cam.com/play/PL285LgYq_FoIxzd1TwZ2ra9Gj56WY-aDN.html

  • @chiragp7
    @chiragp7 5 วันที่ผ่านมา

    Have you yet considered to create video on adding MS Entra ID (open ID connect) to existing App that already has custom authentication and authorization (similar to Your Employee Management System) so this way that App can be utilized for local accounts or choose MS Entra ID say companies existing MS Entra ID (Azure Active Directory)? Please let me know, thanks

    • @Netcode-Hub
      @Netcode-Hub 5 วันที่ผ่านมา

      Not yet

    • @chiragp7
      @chiragp7 4 วันที่ผ่านมา

      @@Netcode-Hub how can I remove custom login (authentication and authorization) on your employee management system and add Entra Id?

    • @Netcode-Hub
      @Netcode-Hub 4 วันที่ผ่านมา

      @chiragp7 removing is quite simple. Am yet to explore Entra. Will have a video on it when done

    • @chiragp7
      @chiragp7 4 วันที่ผ่านมา

      @@Netcode-Hub can you please please advise as I tried few attempts with no success? I tried rewinding video to get understand on it but confused as I am new to blazor

  • @chiragp7
    @chiragp7 5 วันที่ผ่านมา

    This is Great One, specially monitors within APP instead spending extra on other providers.

  • @AliHassan-wc6nb
    @AliHassan-wc6nb 5 วันที่ผ่านมา

    Mannnnn, you are awesome.

  • @cherifdiallo5592
    @cherifdiallo5592 6 วันที่ผ่านมา

    but I have an issue with the following line of code : var response = await privateClient.GetAsync(Constant.GetRolesRoute); It says that Task<HttpClient> does not cointain a definition for GetAsync

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      Make sure your private client return an instance of httpclient

    • @cherifdiallo5592
      @cherifdiallo5592 6 วันที่ผ่านมา

      @@Netcode-Hub in the Application.Extensions.HttpClientService class the function is defined as this : public async Task<HttpClient> GetPrivateClient(). I'm doing something wrong?

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      No if the method return HttpClient. Debug this method and make sure token is added to the header.

  • @cherifdiallo5592
    @cherifdiallo5592 6 วันที่ผ่านมา

    First of all thank you for all our good work!

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      It’s my pleasure

  • @ExequielBJ
    @ExequielBJ 6 วันที่ผ่านมา

    Excellent 😊

  • @mdsafikulislam9113
    @mdsafikulislam9113 6 วันที่ผ่านมา

    Please bring Windows Forms tutorials...❤

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      Will do that when I receive multiple requests. 😃

    • @mdsafikulislam9113
      @mdsafikulislam9113 6 วันที่ผ่านมา

      @@Netcode-Hub If you Start then we'll responses...🙏

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      @mdsafikulislam9113 are you sure ? 😂

  • @embossCoder
    @embossCoder 6 วันที่ผ่านมา

    Great work! Thank you!

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      welcome 😄

  • @waynehawkins654
    @waynehawkins654 7 วันที่ผ่านมา

    Very useful Netcode-Hub. I did see it's a hot day for you hitting the 30s, bit better than my -4 right now.

    • @Netcode-Hub
      @Netcode-Hub 2 วันที่ผ่านมา

      😂 Sure.

  • @not_amanullah
    @not_amanullah 7 วันที่ผ่านมา

    Great

    • @Netcode-Hub
      @Netcode-Hub 7 วันที่ผ่านมา

      Sure 😊

  • @yassermian9913
    @yassermian9913 7 วันที่ผ่านมา

    I fail to understand what you said at time 1:09, you spoke too fast.

    • @Netcode-Hub
      @Netcode-Hub 7 วันที่ผ่านมา

      I said cookie authentication is employed to handle user authentication and authorization. is it okay? or not this one?

    • @yassermian9913
      @yassermian9913 7 วันที่ผ่านมา

      @@Netcode-Hub not this one, you implmented IdentityRevalidateAuthStateProvider, so before implementing that you did not explain why we need this, or even if u explained it was too fast and mumbled :) but anyway i took help from chat gpt.

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      @yassermian9913 alright

  • @yassermian9913
    @yassermian9913 7 วันที่ผ่านมา

    So far excellent video, but you are complicating things by introducing minimal api, it distracts and you should have confined to the usual logout method in Account service.

    • @Netcode-Hub
      @Netcode-Hub 7 วันที่ผ่านมา

      To get access to HttpContext (in session mode), you should consider using minimal API, haven't tried the normal one though, you can give it a try and feedback us how it went.😊

    • @yassermian9913
      @yassermian9913 7 วันที่ผ่านมา

      @@Netcode-Hub sorry to ask again you said HttpContext (in session mode)...what is session mode exactly?

    • @Netcode-Hub
      @Netcode-Hub 6 วันที่ผ่านมา

      @@yassermian9913 httpcontext has started already.

  • @moreen2706
    @moreen2706 8 วันที่ผ่านมา

    I keep getting: "'<' is an invalid start of a value. Path: $ | LineNumber: 2 | BytePosition: 0." error when i switched to Dev Tunnels.

    • @Netcode-Hub
      @Netcode-Hub 8 วันที่ผ่านมา

      In Maui or Web API

    • @moreen2706
      @moreen2706 8 วันที่ผ่านมา

      @@Netcode-Hub Maui. I get said alert after click on Log in button whether credentials are correct or not followed by the alert 'Incorrect Fields' in both cases.

    • @Netcode-Hub
      @Netcode-Hub 8 วันที่ผ่านมา

      @moreen2706 I belief the api return JWT token after login right ? Then try your api with the same login and see it you will get the JWT token. If it works check your api address in your Maui app.

  • @archnod
    @archnod 8 วันที่ผ่านมา

    This all code finally converted to JavaScript 😁 Need learn JavaScript!

    • @Netcode-Hub
      @Netcode-Hub 8 วันที่ผ่านมา

      😂 I don’t get your message well

  • @moreen2706
    @moreen2706 8 วันที่ผ่านมา

    App runs for windows machine but throws connection failure error for android emulator.🥺

    • @Netcode-Hub
      @Netcode-Hub 8 วันที่ผ่านมา

      Then reinstall the android emulator

  • @RupeshPrajapati-po1rp
    @RupeshPrajapati-po1rp 8 วันที่ผ่านมา

    How can I access all image which you are used please tell me

  • @MrSikesben
    @MrSikesben 8 วันที่ผ่านมา

    Thanks man for this tool. I am going to try and use it

    • @Netcode-Hub
      @Netcode-Hub 8 วันที่ผ่านมา

      Great 😊

  • @Netcode-Hub
    @Netcode-Hub 8 วันที่ผ่านมา

    I Have Re-recorded this video again, in that, all codes are visible so if you couldn't see any code in this kindly check that one from th-cam.com/video/zccbEgqkqPE/w-d-xo.htmlsi=zfuqsiGD0qoFiOHT

  • @AliHassan-wc6nb
    @AliHassan-wc6nb 9 วันที่ผ่านมา

    Wow, ma'am you are the best! "don't tell anybody"

    • @Netcode-Hub
      @Netcode-Hub 9 วันที่ผ่านมา

      😀🤣

  • @masoudkhodadadi5838
    @masoudkhodadadi5838 10 วันที่ผ่านมา

    Great and useful video. It could be better if we automate checking heath status using background services to continuously monitor health status of our services!👍👍

    • @Netcode-Hub
      @Netcode-Hub 9 วันที่ผ่านมา

      Great, Check out this: 🛠 Goodbye Manual Scheduling!🙋‍♂, Hello Hangfire Magic👋! Automate Web API Operations with Ease! 🌟🔥th-cam.com/video/Mu5RmZIB_zo/w-d-xo.html

  • @opodendorf
    @opodendorf 10 วันที่ผ่านมา

    Chaotic! He's always jumping from one thing to the next.

  • @RupeshPrajapati-po1rp
    @RupeshPrajapati-po1rp 11 วันที่ผ่านมา

    I am doing Same way this project but I have faced login problem

    • @Netcode-Hub
      @Netcode-Hub 10 วันที่ผ่านมา

      Thus great

  • @RupeshPrajapati-po1rp
    @RupeshPrajapati-po1rp 11 วันที่ผ่านมา

    Hey bro can you send me source code please for my Placement

    • @Netcode-Hub
      @Netcode-Hub 10 วันที่ผ่านมา

      Kindly check the video description

    • @RupeshPrajapati-po1rp
      @RupeshPrajapati-po1rp 10 วันที่ผ่านมา

      @@Netcode-Hub its very costly

    • @RupeshPrajapati-po1rp
      @RupeshPrajapati-po1rp 10 วันที่ผ่านมา

      @@Netcode-Hub its very costly in our indian currency and i m student

    • @Netcode-Hub
      @Netcode-Hub 9 วันที่ผ่านมา

      Kindly mail me, check the video description.

  • @dp-bhatt
    @dp-bhatt 11 วันที่ผ่านมา

    Thank you for the video. I have individual account cookies for the render mode auto exactly as shown in this video. There are also a few controllers on the server project that are being consumed by the client HttpClient. I tried to put [Authorize (Roles ="Administrators")] on the API controllers but that didn't work. Do I need to configure different authentication schemes for the API controllers and razor pages? Are there any resources you have created?

    • @Netcode-Hub
      @Netcode-Hub 10 วันที่ผ่านมา

      But do you have that role in place? Authentication is set once and can be used anywhere . Make sure your authentication persists in component state when going to the client .

  • @ankurkatiyar07
    @ankurkatiyar07 11 วันที่ผ่านมา

    That's cool But what about Out of the Box Register end point...? Can we disable them...

    • @Netcode-Hub
      @Netcode-Hub 10 วันที่ผ่านมา

      Removing the service registered will disable it

  • @tahirjaved3205
    @tahirjaved3205 11 วันที่ผ่านมา

    Thanks Bro..

    • @Netcode-Hub
      @Netcode-Hub 10 วันที่ผ่านมา

      Welcome 🤗

  • @jacobdillon5488
    @jacobdillon5488 11 วันที่ผ่านมา

    I notice this was using the blazer web app is it also compatible with .net 8 server app?

    • @Netcode-Hub
      @Netcode-Hub 11 วันที่ผ่านมา

      Yes 👍

  • @rahulstarkindustries2711
    @rahulstarkindustries2711 12 วันที่ผ่านมา

    I am getting signal r notifications on local server(vs prj) ... But after deploying on iis server.. Notifications are not coming... Connection itself not happening.. Bro can you please tell me the solution for this

    • @Netcode-Hub
      @Netcode-Hub 12 วันที่ผ่านมา

      This mean the deployment is not successful

    • @rahulstarkindustries2711
      @rahulstarkindustries2711 11 วันที่ผ่านมา

      @@Netcode-Hub the app is perfectly working bro after development..... Only notifications are not working... Showing 404.. Either not signalr endpoint or proxy blocked .....on live.... But... In my local machine working fine...

    • @Netcode-Hub
      @Netcode-Hub 11 วันที่ผ่านมา

      @rahulstarkindustries2711 have you configured the signalR endpoint? Are you using Web API with Wasm ?

    • @rahulstarkindustries2711
      @rahulstarkindustries2711 11 วันที่ผ่านมา

      @@Netcode-Hub yes.. Dot net core.. mvc...only App. Map<notificationhub>("/notification") ;

  • @soheilkaramian9466
    @soheilkaramian9466 12 วันที่ผ่านมา

    great video Bro👌

  • @daveb4216
    @daveb4216 12 วันที่ผ่านมา

    Hi. I know this is a slightly old video now but I am trying to get into Blazor in .net 8 so using it as a startpoint. When I download and run the blazor app I get the following error: info: Microsoft.AspNetCore.Authorization.DefaultAuthorizationService[2] Authorization failed. These requirements were not met: DenyAnonymousAuthorizationRequirement: Requires an authenticated user. Swagger works fine so the issue must be in the blazor app I think. Do you have any idea what causes this. I have the same problem on 2 different machines ! any help is appreciated. 🙂 Dave

    • @Netcode-Hub
      @Netcode-Hub 12 วันที่ผ่านมา

      This video consumes the authentication in blazor , have you set the authentication already ?

    • @daveb4216
      @daveb4216 12 วันที่ผ่านมา

      @@Netcode-Hub I am not sure what you are actually saying there. I simply download your github solution and run them It fails on an authorization problem when I try to do anything. This isn't an authentication issue I think. Dave

    • @Netcode-Hub
      @Netcode-Hub 12 วันที่ผ่านมา

      Sorry for typo Was saying This video consumes the authentication in blazor , have you set the authentication already ?

    • @daveb4216
      @daveb4216 11 วันที่ผ่านมา

      @@Netcode-Hub Hi No, as it is the register page that gives the error. The API call through Swagger works fine. Dave

    • @Netcode-Hub
      @Netcode-Hub 9 วันที่ผ่านมา

      Have you rectified the error now?

  • @nosaanthony7310
    @nosaanthony7310 12 วันที่ผ่านมา

    I developed a low-code platform than can achieve all these tasks in less than 5mins. Looking for partners to lunch with