Nitish Kaushik
Nitish Kaushik
  • Видео 42
  • Просмотров 109 852
Git Pull Request Review Comments in Visual Studio 2022 | Review the code in Visual Studio 2022
Now you can view the Git pull request review comments in visual studio directly. This new feature of Visual Studio 2022 allows you to review the pull request in visual studio.
This new feature of visual studio 2022 is a very good developer tool to improve the productivity.
#git #visualstudio2022 #pullrequest
Join this channel to get access to perks:
ruclips.net/channel/UCNDWoYjgz_7e9FeuRg5I6Qwjoin
Просмотров: 453

Видео

How to install Linux on Windows with WSL | How to run Linux on Windows
Просмотров 700Месяц назад
To run linux on windows 11 (or 10) there are few ways. The easiest way to install linux on windows is to run linux on windows with WSL. WSL is Windows Subsystem for Linux and with the help of WSL you can install any distribution of linux operating syste. Link to WSL documentation: learn.microsoft.com/en-us/windows/wsl #wsl #linux #windows Join this channel to get access to perks: ruclips.net/ch...
Github Copilot Visual Studio 2022 First impression
Просмотров 339Месяц назад
Github Copilot is available in Visual Studio 2022. You can install the Github Copilot in Visual Studio 2022 using different ways. In this video we will perform several operations on Github Copilot using Visual Studio 2022. We will learn how to generate new code using Github copilot and how to refactor the existing code using Github copilot. We will also talk about some Github copilot issues in ...
Postman Extension for VSCode (Visual Studio Code) 🚀
Просмотров 2592 месяца назад
Postman has launched its extension for Visual Studio Code (VS Code) to test the endpoints. Now you can test all the API endpoints directly from VS code by using Postman VSCode extension. In this video, we will learn how to install the postman extension in visual studio code from scratch. Join this channel to get access to perks: ruclips.net/channel/UCNDWoYjgz_7e9FeuRg5I6Qwjoin
Authentication and Authorization in asp.net core using AddApiEndpoints | Fastest Way to Develop APIs
Просмотров 7922 месяца назад
Authentication and Authorization in asp.net core can be achieved without writing any code in just 1 minute. AddApiEndpoints in Asp.Net Core is a new method and it generates all the authentication and authorization APIs in your asp.net core application. The AddApiEndpoints in asp.net core used the Entity Framwork Core and Identity. We can also cutomise the route for these endpoints by using MapG...
Serialization and Deserialization in C# using System.Text.Json | Complete Course
Просмотров 6662 месяца назад
Serialization and Deserialization in C# is used to convert the C# object to json string and Json string to c# object. Serialization is the process of converting the c# object to JSON string and Deserialization is the process of converting JSON string to c# object. There are differect libraries available for Serialization and Deserialization in dotnet core but in this video we will use the built...
.slnx file (New solution file) in Visual Studio 2022 | Latest Feature of Visual Studio
Просмотров 5732 месяца назад
.slnx file in Visual Studio is a new file that is a replacement of existing .sln file. The new .slnx solution format in visual studio has simple xml based format and removes all the complex content from solution file. This new .slnx file format is added in Visual Studio 2023 Preview 17.10.0 Preview 3 version. In this video, we will learn how to generate new .slnx file using Visual Studio and ho...
7 Ways to Improve the Software Developer Productivity
Просмотров 1873 месяца назад
How to improve developer productivity? In this video I will discuss 7 ways to improve software developer productivity. This tips will help you to grow in software development career. Chaptors 00:00 Introduction 01:24 Tip 1: Learn and use your development tools really well 02:38 Tip 2: Understand the requirement 03:47 Tip 3: Learn the art of searching your issue over internet 04:40 Tip 4: Focus ...
HttpClient in Asp.Net Core Web API | HttpClient C#
Просмотров 3,9 тыс.5 месяцев назад
HttpClient in Asp.Net core Web API is used to call other endpoints from asp.net core applications including blazer, asp.net core mvc, asp.net core razor, asp.net core Web API, etc. In this video, we will learn 5 different ways to use the HTTP client in the asp.net core application. #httpclient #aspnetcore Join this channel to get access to perks: ruclips.net/channel/UCNDWoYjgz_7e9FeuRg5I6Qwjoin
Global Exception Handling in Asp.Net Core Web API using IExceptionHandler
Просмотров 9 тыс.5 месяцев назад
Global Exception Handling in Asp.Net Core Web API can be done using IExceptionHandler. The IExceptionHandler interface in asp.net core is a newly added concept and it is used to avoid try-catch from your asp.net core application by handling the exceptions globally. The IExceptionHandler interface in dotnet core can be used to handle the exceptions globally in all the asp.net core frameworks lik...
Entity Framework Core (EF Core) In Memory Database CRUD Operations
Просмотров 1,7 тыс.5 месяцев назад
Entity Framework Core provides an In-Memory database to work on your POCs and Test applications. This In Memory database in Ef Core provides a similar experience that we get with the actual database. You do not have to install any software to work with the In-Memory database in Entity Framework Core. This In Memory database in Ef Core can be accessed only by using a NuGet package Microsoft.Enti...
Visual Studio Endpoint Explorer 🎯
Просмотров 2,2 тыс.6 месяцев назад
Visual Studio Endpoint Explorer is a built-in latest feature of Visual Studio 2022. Visual Studio Endpoint Explorer allows us to fetch the list of all the available endpoints (APIs) from the solution. Using Visual Studio Endpoint Explorer we can open the particular API in the editor. This Visual Studio Endpoint Explorer also helps to generate the request in an HTTP file only by using 1 click. V...
How to use Dependency Injection (DI) in C# Console Application with Logging
Просмотров 2,3 тыс.6 месяцев назад
How to use Dependency Injection (DI) and Logging in C# Console Application. Dependency Injection is one of the most useful concepts in any programming language. Dot Net Core has built-in support for DI in a few frameworks example Asp.Net Core. But what if you want to use the Dependency Injection in the C# Console application? In this video, We will learn what are the steps to use Dependency Inj...
How to Swap Two Numbers in C# | Swap two Variables in C#
Просмотров 4626 месяцев назад
Swapping of two numbers in C# is the most fundamental concept. To swap two numbers in C# we generally follow two approaches. One is by using a third variable and another is without using a third variable. In this video, we will learn a new way of swapping variables (numbers, strings, etc) in C#. All New Features of C# 12: ruclips.net/video/cwPHMb2uHxg/видео.htmlsi=S3EpOjyOSs-tlaM4 #swapping #sw...
ExecuteUpdate and ExecuteDelete | Bulk operations in Entity Framework Core (EF Core 8)
Просмотров 9616 месяцев назад
ExecuteUpdate and ExecuteDelete | Bulk operations in Entity Framework Core (EF Core 8)
Collection Expressions in C# 12 Explained!
Просмотров 9569 месяцев назад
Collection Expressions in C# 12 Explained!
Primary Constructor in C# 12 Explained! 🟢 New Feature in .NET Core 8 (C#12)
Просмотров 1,2 тыс.9 месяцев назад
Primary Constructor in C# 12 Explained! 🟢 New Feature in .NET Core 8 (C#12)
Keyed Dependency Injection (DI) in dotnet core 8.0 | Register and retrieve DI using Keys
Просмотров 8399 месяцев назад
Keyed Dependency Injection (DI) in dotnet core 8.0 | Register and retrieve DI using Keys
Visual Studio for Mac Retirement Announcement | Important Update for Mac Users
Просмотров 68510 месяцев назад
Visual Studio for Mac Retirement Announcement | Important Update for Mac Users
Visual Studio GUI for Entity Framework Core Commands | Migrations in Entity Framework Core
Просмотров 3 тыс.10 месяцев назад
Visual Studio GUI for Entity Framework Core Commands | Migrations in Entity Framework Core
Use Blazor Component in MVC! 🔥How to use Blazor Component in Asp.Net Core MVC 🚀
Просмотров 5 тыс.10 месяцев назад
Use Blazor Component in MVC! 🔥How to use Blazor Component in Asp.Net Core MVC 🚀
Built-in cli in visual studio: Developer Command line tools in Visual Studio
Просмотров 5 тыс.Год назад
Built-in cli in visual studio: Developer Command line tools in Visual Studio
Visual Studio 2022 Preview: How to Enable and Explore New Features
Просмотров 1,1 тыс.Год назад
Visual Studio 2022 Preview: How to Enable and Explore New Features
Required Inputs In Angular
Просмотров 307Год назад
Required Inputs In Angular
Get params from URL using inputs in Angular 16 | Enable withComponentInputBinding() in Angular 16
Просмотров 4,4 тыс.Год назад
Get params from URL using inputs in Angular 16 | Enable withComponentInputBinding() in Angular 16
Angular Signals: Understanding how signals in angular work and why angular signals are important ?
Просмотров 667Год назад
Angular Signals: Understanding how signals in angular work and why angular signals are important ?
Native AOT in .Net | Native AOT deployment in C#
Просмотров 2,9 тыс.Год назад
Native AOT in .Net | Native AOT deployment in C#
Microsoft Dev Box - First look and Setup | The Ultimate Developer Workstation
Просмотров 3,1 тыс.Год назад
Microsoft Dev Box - First look and Setup | The Ultimate Developer Workstation
Built in REST CLIENT (.http/.rest) file in Visual Studio 2022 | Best way to test the API
Просмотров 41 тыс.Год назад
Built in REST CLIENT (.http/.rest) file in Visual Studio 2022 | Best way to test the API
Dev Tunnels in Visual Studio 2022
Просмотров 3,4 тыс.Год назад
Dev Tunnels in Visual Studio 2022

Комментарии

  • @abhishekbhawankar2971
    @abhishekbhawankar2971 2 дня назад

    This operation can perform on asp. Net mvc core?

  • @doogiehowser1124
    @doogiehowser1124 6 дней назад

    Thanks for the Video, but I created WebAPI app and "Something went wrong" is NOT displaying. Its hanging at this line: httpContext.Response.StatusCode = StatusCodes.Status500InternalServerError; I found if i switched the lines and called above line BEFORE WriteAsJson() it works.

  • @TellaTrix
    @TellaTrix 8 дней назад

    good

  • @dhruvayushman2785
    @dhruvayushman2785 11 дней назад

    Thanks for this tutorial Nitish sir.

  • @dhruvayushman2785
    @dhruvayushman2785 11 дней назад

    Thanku Nitish sir

  • @SatheeshKumar-jb9tu
    @SatheeshKumar-jb9tu 27 дней назад

    Thaks a lot it is easy to understanding ,can you pls explain dot not feature 1 to 11

  • @MohamadELBadaouiELNajjar
    @MohamadELBadaouiELNajjar Месяц назад

    I can't see this PR1 and I have the preview version. Is it related to GitHub Copilot ??

    • @ZsoltBottka
      @ZsoltBottka 5 дней назад

      Make sure you have the 'Pull Request Comments' enabled under Settings/Environment/Preview Features

  • @nonpuoesserevero
    @nonpuoesserevero Месяц назад

    Very good video, thanks a lot.

  • @microdocs8989
    @microdocs8989 Месяц назад

    your video sound is so low and you are speaking too fast.. it's difficult to understand.

  • @ugib8377
    @ugib8377 Месяц назад

    Thanks for this tutorial. Tons of detail, and examples to go with it! Exactly the information I was looking for!

  • @apoleyta9760
    @apoleyta9760 Месяц назад

    I have a complex object that uses circular reference in c#. When ı try to serialize with "ReferenceHandler.Preserve" option it adds extra "$id" property and when I want to deserialize it to model it gives error. If I use "ReferenceHandler.IgnoreCycle" option then memory usage is increasing instantly and program is being locked and cant proceed. What should I do ? I'm using serialization/deserialization to setting/getting from cache

  • @UnbiasedThamizhan
    @UnbiasedThamizhan Месяц назад

    Your intention is right, but not clear; You have to stop and show the difference between two handlers.

  • @user-jo7qy3cc9j
    @user-jo7qy3cc9j Месяц назад

    I ran an example in vs code with a Set-Cookie in Response Headers, but the postman cookie interface shows No Cookie Available, excuse me, why is this? Please help me, thank you!

  • @KnowlegeStream
    @KnowlegeStream Месяц назад

    How to register Exception handler with logger in Program.cs?

  • @csdias2004
    @csdias2004 Месяц назад

    Interesting

  • @TeemoPwnstar
    @TeemoPwnstar Месяц назад

    Whenever I try to do a wsl.exe --update or install a distro, it stays at 0% and I get a "The server name or address could not be resolved". I've tried turning on and off various windows virtualisation features as suggested by various threads, but this problem still persists. Does anyone know of a solution? Thanks for the video Nitish!

  • @adarsharooradarsharoor5305
    @adarsharooradarsharoor5305 Месяц назад

    How can we include it in the DLL's because all the business logics usually we write it inside the separate DLL's.

  • @kidoo1567
    @kidoo1567 Месяц назад

    U look like that web gentle channel guy😮😮

    • @nitish.kaushik
      @nitish.kaushik Месяц назад

      Yes, you recognize me well my friend. Both channels are mine.

    • @kidoo1567
      @kidoo1567 Месяц назад

      @@nitish.kaushik ohh.. Lol.. Nice

  • @csdias2004
    @csdias2004 Месяц назад

    Good video. Just one suggestion, either turn the click sound off or lower its volume. Because it is louder than your voice it is a little bit annoying.

  • @osamamicro1103
    @osamamicro1103 2 месяца назад

    Does it works offline without Internet!?

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      Just try it and let us know here.

  • @codingislife6387
    @codingislife6387 2 месяца назад

    very infromative

  • @user-fqlt
    @user-fqlt 2 месяца назад

    Thanks for the info. Now Postman returns the punch to Thunder Client.

  • @Rameshkumar-ne1ev
    @Rameshkumar-ne1ev 2 месяца назад

    short , to the point, also address different cases like multiple parameters and query string etc. very nice !

  • @ugempireninjaaaaaahatori6755
    @ugempireninjaaaaaahatori6755 2 месяца назад

    Sir, can u please make the video over .Net 8 a complete tour, I have worked in dotnet 6 , but there are many more new things in dotnet 8 and ur way of explaining is awesome

  • @ugempireninjaaaaaahatori6755
    @ugempireninjaaaaaahatori6755 2 месяца назад

    Sir following u sice i join IT industry , great content

  • @TeemoPwnstar
    @TeemoPwnstar 2 месяца назад

    Excellent video - thank you Nitish

  • @jonb8869
    @jonb8869 2 месяца назад

    This feature is terrible and everyone involved in it should be fired.

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      Are you getting any issue with this search window or you dont like it?

    • @jonb8869
      @jonb8869 2 месяца назад

      @@nitish.kaushik It overrides a short cut key I use all the time GoToAll. This gotoall feature while it's not perfect it's close enough. It's leaner, faster, and exactly what I need. Why the hell is the shortcut for All-In-One mapped outside of Tools>Options>Keyboard section where every other keyboard mapping is handled? This alone should warrant the ENTIRE team working on this feature to be fired and banned from ever working in tech again. I don't mind crappy features being in Visual Studio. Just don't force them directly into my workflow. This new stupid All-in-one search feature is pathetically slow. Both in performance and design. First it's slow pulling up the results. Second it pops up a new window. This means the location of where the search results will pop up are not fixed. With GoToAll I know exactly where it's going to be. I don't have to waste time searching for where the results are going to be and focusing on them. This is really design 101 You want a predictable UI that doesn't move crap around based on your erroneous input. Third. What the HELL is with the tiered design. This is way too complicated. If I am searching for code why do I care about features and vice versa? If the first search result is wrong why does it take me longer to select something different. I don't want to edit code in a small box. This is why I have big screens. The UI is WAY too damn complicated. Objectively it's slower for EVERYONE to use than a simple lean search. Google knows how search is suppose to be. Simple. It's a textbox maybe with some drop down suggestions and boom fast simple results that are easy to skim through.

  • @PhatNguyen-nj4sx
    @PhatNguyen-nj4sx 2 месяца назад

    Hello sir, your video showed me a one more way to work with migration and it was very useful. Thank you for sharing your knowledge

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      Thank you for the feedback ☺️

  • @jagadishdasari6466
    @jagadishdasari6466 2 месяца назад

    Wonderful Nitish. Is there any difference of this feature in Angular-17 if so, please demonstrate. Thanks Again!

  • @hozmannew896
    @hozmannew896 2 месяца назад

    Thank you so much, great in detail video, can you please make a video about sending data with all differents way like SendAsync, PostAsync, SendAsJsonAsync, ... in same details please? and thank you agai for your great effort

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      Thanks for your feedback. I have already created that video. Here is the link. ruclips.net/video/5Hhj2GBMCzs/видео.html

    • @hozmannew896
      @hozmannew896 2 месяца назад

      @@nitish.kaushik another great video, thank you so much

  • @snehdeepukey1279
    @snehdeepukey1279 2 месяца назад

    how to use Generic wrapper to consume RESTful API in dot net core

  • @ty_39_komalsingh79
    @ty_39_komalsingh79 2 месяца назад

    So we do not need to add service.AddRazorPages() here and also no need to use routing of Blazor app like @page directive ?

  • @10Totti
    @10Totti 2 месяца назад

    Best Tutorial thanks! PS. Remove click sound 😁

  • @tsuresh9258
    @tsuresh9258 2 месяца назад

    Thank You So Much Sir... Plz Plz Posting Videos

  • @user-fqlt
    @user-fqlt 2 месяца назад

    Very interesting. Thanks for the great content.

  • @NaveenKumar-dc8jv
    @NaveenKumar-dc8jv 2 месяца назад

    Simple and good. :)

  • @atanubakly1586
    @atanubakly1586 2 месяца назад

    thank you for this information.

  • @liammcmullen4497
    @liammcmullen4497 3 месяца назад

    Thanks Nitish, very useful video, lots of examples.

  • @OnoderaMyGirl
    @OnoderaMyGirl 3 месяца назад

    T.Y

  • @kaushikbhadani
    @kaushikbhadani 3 месяца назад

    Very very true!!

  • @vibes992000
    @vibes992000 3 месяца назад

    very useful. This was one of the good features of Resharper which is now natively available in VS 2022

    • @nitish.kaushik
      @nitish.kaushik 3 месяца назад

      You are right. Thanks for the comment 😊

  • @itranjan
    @itranjan 3 месяца назад

    Please start a azure course 204 for software developers. It will help them lots. U r really a wonderful teacher.

  • @oveskhan687
    @oveskhan687 3 месяца назад

    can you show how to use this handler in console app

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      This is for Asp.Net core only

    • @oveskhan687
      @oveskhan687 2 месяца назад

      @@nitish.kaushik yes .net core console app. How to implement it on console app.

    • @nitish.kaushik
      @nitish.kaushik 2 месяца назад

      Asp. Net core is for web applications. Asp. Net core is a sub framework of dotnet core ecosystem and asp.net core is diff from console

  • @g40styboi42
    @g40styboi42 3 месяца назад

    Great video, you earned a like and sub!

  • @user-if6tr5if3l
    @user-if6tr5if3l 3 месяца назад

    Hello thank you for the tutorial I tried this approach but when I create an <a></a> with asp-controller and asp-action For ex. I Have a localhost: 44301 When I run my website the url is set to its default url which is "localhost: 44301" the "_framework/blazor.server.js" works and the blazor intialzer file. When I checked the Url of these files it is correct (localhost:44301/_framework/blazor.server.js and localhost:44301/_blazor/initializers) But when I type the "Home/Index" which leads to the same page and the "_framework/blazor.server.js" and the blazor intialzer file dont work(not found). When I check the Url of these files it is still the same (localhost:44301/Home/_framework/blazor.server.js and localhost:44301/Home/_blazor/initializers) I also tried to add "/" or front slash it works on every pages but the blazor initializer dont work "/_framework/blazor.server.js" not just the blazor initializer but as well as the other functions that rely on the path of blazor framework. Overall the blazor framework is affected by the asp-controller and asp-action

  • @delicoshasan
    @delicoshasan 4 месяца назад

    A very clear explanation, quite helpfull.

  • @egitim10
    @egitim10 4 месяца назад

    This is second video of Nitish which I have watched. Simply very helpful and clear explanations. Thanks once more..

  • @egitim10
    @egitim10 4 месяца назад

    Very clear. Thanks Nitish

  • @omkale6541
    @omkale6541 4 месяца назад

    Thanks a lot sir for bringing this type of knowledgeable videos

  • @omkale6541
    @omkale6541 4 месяца назад

    Hello sir Thanks for sharing 😊How can we use Azure HTTP Trigger Functions with .Net core API and what is the use of using it? pls make a video if possible