QuickTech@AJ(Alok Jha)
QuickTech@AJ(Alok Jha)
  • 80
  • 12 460
Part 15 : What is ViewModel in .NET Core MVC ?
In .NET Core, a ViewModel is a class specifically designed to represent data that the view (UI layer) needs to display. The ViewModel serves as a bridge between the Model (the application's data structure or business logic layer) and the View (the UI). This pattern is particularly useful in ASP.NET Core MVC and Razor Pages, where it facilitates separating concerns and organizing data for display purposes.
Key Points about ViewModel
ViewModel contain fields that are represented in the view (for LabelFor, EditorFor, DisplayFor helpers)
ViewModel can have specific validation rules using data annotations.
ViewModel can have multiple entities or objects from different data models or data source.
#programming #sqlqueryinterviewquestionsandanswers #aspdotnetcore #aspdotnetcore8
Переглядів: 7

Відео

Part 14 : Database Con Using EF Core and Applying the DbFirst Approach to create models in .NetCore.
Переглядів 2819 годин тому
1. In this video explian db connection by Entity frmework core using db first approach. 2. How to create connection on appsetting. 3. How to register sqlserver service at program.cs. #linqinterviewquestion #sqlqueryinterviewquestionsandanswers #aspdotnetcore #dotnetcore8 #EFCoreDbFirstApproach Linq Tutorials : ua-cam.com/video/9PDcUQ6xAP0/v-deo.html SqlServer Tutorials : ua-cam.com/video/qvW0uh...
Part 12 : Dot Net Core Dependency Injection Tutorial with code example.
Переглядів 49День тому
Dependency Injection (DI) is a design pattern used to achieve Inversion of Control (IoC) between classes and their dependencies. In simpler terms, rather than a class controlling its dependencies (e.g., creating objects directly), these dependencies are injected into the class, typically through the constructor, methods, or properties. In this video exaplain, how to implement depency injection....
Part 11: How to Set Up and Use Sessions in ASP.NET Core?.
Переглядів 38День тому
TIn ASP.NET Core, sessions are not enabled by default. You need to configure and enable session management. #aspdotnetcore #sqlqueryinterviewquestionsandanswers #linq #aspdonetcoremvc Linq Tutorials : ua-cam.com/video/9PDcUQ6xAP0/v-deo.html SqlServer Tutorials : ua-cam.com/video/qvW0uhVNcyc/v-deo.html Azure : ua-cam.com/video/T5sI2ZwXbK0/v-deo.html C# Program Logic: ua-cam.com/video/lEp8ia97KwM...
Part 10 : How to persist data in TempData?.
Переглядів 18День тому
1. Keep data in TempData : The Temp.Keep() method ensure that the data is preserved across multiple request even after , it has been read once. 2. Peek data in TempData : The TempData.Peek() method allows you to read the data without removing it. This is useful when you want to check the value but still want it to be available for future requests. #aspdotnetcore #aspdotecore8 #aspdotnetcore8mvc...
Part 9 : In ASP.NET Core MVC, understanding TempData with an example?
Переглядів 2614 днів тому
What is TempData? How can tempdata be used? #aspdotnetcore #aspdotecore8 #sqlqueryinterviewquestionsandanswers #coding
Part 8: Understanding ViewData and ViewBag in ASP.NET Core: Why and How to Use Them?
Переглядів 4314 днів тому
1. In this video, I will explain viewdata with a code example. 2. In this video, I will explain ViewBag with a code example. Http less protocol , by mistake I have used control. #aspdotnetcore #aspdotecore8 #asp.net core #sqlqueryinterviewquestionsandanswers #coding #mvctutorial #Asp.netCoreInterviewQuestionAndAnswer
Part 7 : What is middleware in. Net core , why use and order of middleware?
Переглядів 2914 днів тому
Middleware in .NET Core is a software component that is assembled into an application pipeline to handle requests and responses. Each component chooses whether to pass the request to the next component in the pipeline and can perform operations before and after the next component in the pipeline is invoked. #sqlqueryinterviewquestionsandanswers #programminglogic #middleware #Asp.net Core Interv...
Part 6: .Net Core Project File and Folder.
Переглядів 4314 днів тому
In this video, I will explain each file and folder of the project. #programming #asp.net #linqoperators, #CoreBasicAndAdvance #Sql_Server_InterviewQuestion
Part 5: Creating .Net core Web Application?
Переглядів 3914 днів тому
In this video explain about .net core project creation with different different Template. #coding #codebeginers #sql #sqlqueryinterviewquestionsandanswers #mvc#asp.netcore
Part 4 : Explain ASP.NET MVC pipeline in asp.net core tutorial videos.
Переглядів 2421 день тому
In this video explain mvc pipline with diagram. Explain rounting? Explain controller intiliazation Expalin Authorization filter Explain Authentication filter Exaplin View rendering #sqlqueryinterviewquestionsandanswers #linq #mvc
Part 3 : What is MVC? Explain Mvc design pattern. Advantage of Mvc over web form.
Переглядів 1121 день тому
In this video explain 1. What is MVC? 2. Explain the design pattern of MVC. 3. Advntage of MVC over webform. #Sql_Server_InterviewQuestion,#.net core 8 tutorial,#mvc tutorial,#sql,#linq tutorial #mvc
Part 2 : What is .Net Core and advantage of .net core. Difference Between .Net Framework .
Переглядів 1521 день тому
In this video explain 1. What is .net core ? 2. Advantage of .net core 3. Difference Between .net framework and .net core. Sql_Server_InterviewQuestion,#.net core 8 tutorial,#mvc tutorial,#sql,#linq tutorial
Part 1 : Required software Installtion for Mvc and .Net Core Tutorial Video.
Переглядів 1821 день тому
In this video explain required software for .net core tutorial. #.net core 8 tutorial
Part 20 : Write LINQ query to find 2nd highest salary?
Переглядів 821 день тому
Nth higest salary find by linq query You can find nth highest salary by writing the following query. #sqlqueryinterviewquestionsandanswers #linq #linqoperators #linqinterviewquestion
Part 19 : What is Left Join and Cross join in Linq?
Переглядів 2321 день тому
Part 19 : What is Left Join and Cross join in Linq?
Part 18 : What is GROUP JOIN and Why use Group join?
Переглядів 828 днів тому
Part 18 : What is GROUP JOIN and Why use Group join?
Part 17: What are different types of joins in LINQ? Inner Join with And OR condition?
Переглядів 4028 днів тому
Part 17: What are different types of joins in LINQ? Inner Join with And OR condition?
Part 16. What is Extension method?
Переглядів 34Місяць тому
Part 16. What is Extension method?
Part 15 : How var type is different from anonymous type?
Переглядів 12Місяць тому
Part 15 : How var type is different from anonymous type?
Part 14: What is lambda expression?
Переглядів 15Місяць тому
Part 14: What is lambda expression?
Part 12:What is anonymous method?
Переглядів 24Місяць тому
Part 12:What is anonymous method?
Part 11: Explain Union, Intersect and Except?
Переглядів 9Місяць тому
Part 11: Explain Union, Intersect and Except?
Part 10: What is difference between into and let keyword in LINQ?
Переглядів 10Місяць тому
Part 10: What is difference between into and let keyword in LINQ?
Part 9: What is difference among Any, All and Contains?
Переглядів 8Місяць тому
Part 9: What is difference among Any, All and Contains?
Part 8 : What is difference between First and FirstOrDefault ?
Переглядів 18Місяць тому
Part 8 : What is difference between First and FirstOrDefault ?
Part 7: What is difference between Single and SingleOrDefault ?
Переглядів 11Місяць тому
Part 7: What is difference between Single and SingleOrDefault ?
Part 6: Linq interview question: how to use Take and TakeWhile?
Переглядів 13Місяць тому
Part 6: Linq interview question: how to use Take and TakeWhile?
Part 5: Find out all students who have a grade value of less than 80.
Переглядів 20Місяць тому
Part 5: Find out all students who have a grade value of less than 80.
Part 4 : Given a list of student grades, skip the top 3 grades and find the remaining.
Переглядів 30Місяць тому
Part 4 : Given a list of student grades, skip the top 3 grades and find the remaining.

КОМЕНТАРІ

  • @SM-tz3nv
    @SM-tz3nv 9 днів тому

    There's no Forcedphysicalsector in my device.

    • @alok8498
      @alok8498 8 днів тому

      You need to add with new key in registry editor

  • @cutest_ashita309
    @cutest_ashita309 22 дні тому

    ❤❤❤❤❤

  • @cutest_ashita309
    @cutest_ashita309 Місяць тому

    Very nice knowledge ❤

  • @cutest_ashita309
    @cutest_ashita309 Місяць тому

    Nice class❤❤❤

  • @ullas06
    @ullas06 Місяць тому

    Thank you so much, it fixed the issue.

    • @alok8498
      @alok8498 Місяць тому

      Bro subsribe my channel. Your Welcome

  • @domingog8789
    @domingog8789 2 місяці тому

    Great job, I'st fix now, Thank you

    • @alok8498
      @alok8498 Місяць тому

      You're welcome!

    • @alok8498
      @alok8498 Місяць тому

      You're welcome!

  • @fabioandres1097
    @fabioandres1097 2 місяці тому

    This was great. New sub, God used you as my angel.

    • @alok8498
      @alok8498 Місяць тому

      Wow, thank you

  • @billyma.1235
    @billyma.1235 2 місяці тому

    HI! unfortunatly it did not work, I keep getting the same error: The following error has ocurred: Value cannot be null. Parameter name: path 1 TITLE: Microsoft SQL Server 2022 Setup

    • @alok8498
      @alok8498 2 місяці тому

      1. First add key in registory editor 2.Command Prompt as Administrator 3.Add key REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" /v "ForcedPhysicalSectorSizeInBytes" /t REG_MULTI_SZ /d "* 4095" /f 4. Validate if the key was added successfully. REG QUERY "HKLM\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" /v "ForcedPhysicalSectorSizeInBytes" 5. After that reboot system. 6. Download sqlserver 2022 exe from Microsoft official website

    • @alok8498
      @alok8498 2 місяці тому

      Name ForcedPhysicalSectorSizelnBytes Type REG_SZ REG_MULTL_SZ Data(value) *4095 You need to register in registoty aditor. Currently you are passing wrong value

    • @alok8498
      @alok8498 2 місяці тому

      After issue resolved, please subscribe my channel

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Bro I am pursuing MBA In Business Analytics

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Bro Data analyst ki job kaise lagegi

    • @alok8498
      @alok8498 3 місяці тому

      Getting a data analyst job involves a combination of education, skills acquisition, networking, and strategic job searching. Here are the steps to guide you: Education and Certification: Obtain a relevant degree in fields such as Data Science, Statistics, Computer Science, Mathematics, or Economics. Consider online courses and certifications from platforms like Coursera, edX, or Udacity in data analysis, SQL, Python, R, and machine learning. Develop Technical Skills: Learn programming languages commonly used in data analysis, such as Python and R. Gain proficiency in SQL for database management. Understand data visualization tools like Tableau, Power BI, or matplotlib/seaborn in Python. Familiarize yourself with Excel, which is still widely used for data analysis.

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Or ap apna introduction video bi bano

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Ap data analyst ki job krte ho kya

    • @alok8498
      @alok8498 3 місяці тому

      Mai lead . Net developer hu, Ebixcash pvt ltd

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Like or subscribe kr diya

  • @pawanjha4469
    @pawanjha4469 3 місяці тому

    Bro mujhe Sql Sekha do

    • @alok8498
      @alok8498 3 місяці тому

      Aap video dekhte rho mai weekly upload kdta hu

    • @alok8498
      @alok8498 3 місяці тому

      But subscribe aur like kd dijyega

    • @alok8498
      @alok8498 3 місяці тому

      Sare video ko watch karte raho aap bahut kuch sikh jaoge aur abhi mai 100 video dalunga sqlserver ka Sare coverage karenge

  • @dastageerpinjar5065
    @dastageerpinjar5065 3 місяці тому

    Mujhe sql seekhna hai pls

  • @dastageerpinjar5065
    @dastageerpinjar5065 3 місяці тому

    Kya aap continue video daalenge on sql Then i will subscribe

  • @akhandbharat2.038
    @akhandbharat2.038 3 місяці тому

    😂

  • @cutest_ashita309
    @cutest_ashita309 4 місяці тому

    Good information ❤

  • @cutest_ashita309
    @cutest_ashita309 5 місяців тому

    Very nice knowledge ❤❤

  • @adrashchoudhary1112
    @adrashchoudhary1112 5 місяців тому

    Make a video of How to Push and Pull any project from Git to GitHub.

  • @adrashchoudhary1112
    @adrashchoudhary1112 5 місяців тому

    Superb 👍

  • @cutest_ashita309
    @cutest_ashita309 5 місяців тому

    ❤❤❤❤❤

  • @cutest_ashita309
    @cutest_ashita309 5 місяців тому

    Very nice knowledge 😃

  • @fasilhayat
    @fasilhayat 6 місяців тому

    What a messy and confusing long video full of misclicks - just to add a registry key. Could have been boiled down to half a minute.

    • @alok8498
      @alok8498 6 місяців тому

      1. First add key in registory editor 2.Command Prompt as Administrator 3.Add key REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" /v "ForcedPhysicalSectorSizeInBytes" /t REG_MULTI_SZ /d "* 4095" /f 4. Validate if the key was added successfully. REG QUERY "HKLM\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device" /v "ForcedPhysicalSectorSizeInBytes" 5. After that reboot system. 6. Download sqlserver 2022 exe from Microsoft official website