DotNet Core MVC CRUD With Dapper

Поделиться
HTML-код
  • Опубликовано: 25 окт 2024

Комментарии • 83

  • @goodmantshabalala-ei9vm
    @goodmantshabalala-ei9vm 6 месяцев назад +1

    This is quality content nice one jita

  • @sm1166
    @sm1166 Год назад +1

    this video was helpful

  • @鄭海寅-s8d
    @鄭海寅-s8d Год назад

    I really appreciate your kind example lecture.
    I expect CRUD processing of jQuery DataTables with jQuery next. Thanks!

  • @SuvedhiniReddiyar
    @SuvedhiniReddiyar 17 дней назад

    Thanks a lottt!

  • @hutchm92
    @hutchm92 8 месяцев назад

    This is an excellent video. I would only suggest to add chapters to easily navigate back to concepts or steps to review.

    • @ravindradevrani
      @ravindradevrani  8 месяцев назад

      I would appreciate, if someone give some timestamps. 🙏🏽🙂

  • @gauravsrivastava8504
    @gauravsrivastava8504 8 месяцев назад

    Good video but one suggestion, could you please add search filters in display all records , Search filter (multiple search at a time)

    • @ravindradevrani
      @ravindradevrani  8 месяцев назад

      ruclips.net/video/jofW-25Iews/видео.htmlsi=kVtUk1Rbg4FnRhJ8
      At this project you can find search filter with dapper, but it is a blazor server project.
      But you can find some logic there. Project link will be in description of video.
      2nd project in mvc with ef core. Here u can find filter, pagination, sorting etc.
      ( ruclips.net/video/-G6U34wifN4/видео.htmlsi=kJbZ24BdSAp0mtjg)

  • @theAdventurersWorld
    @theAdventurersWorld Год назад

    hello sir , how to pass multiple data in a single datatable from POST API to table valued parameter stored procedure ?

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

    thanks Sir

  • @DennyMapleSyrup
    @DennyMapleSyrup 9 месяцев назад

    I’m getting an “AmbiguousMatchException” because of the overloaded edit function. Any ideas what might be causing this? Just like your example I have one with an int id as a parameter and one with a Person person parameter.
    Also why does there need to be 2 separate edit functions? Can you not put all the functionality into one where the input is just the id?

    • @DennyMapleSyrup
      @DennyMapleSyrup 9 месяцев назад

      Update: I’m an idiot. I forgot to put [HttpPost] before the second edit function. If you are having the same issue, highly recommend you try this fix.

    • @ravindradevrani
      @ravindradevrani  9 месяцев назад +1

      😃 don't be too harsh on yourself.
      It happens all the time.

  • @cissemy
    @cissemy 7 месяцев назад

    Do you recommend Dapper for large application vs EF ?

    • @ravindradevrani
      @ravindradevrani  7 месяцев назад +1

      Both are fine.
      But with dapper alone you can't use identity for authentication. You have to use 3rd party auth system like okta/azure.

  • @sryaan3
    @sryaan3 9 месяцев назад +1

    How to extract code from github ... I've downloaded to pc and in next procedure in visual studio 2022 I'm not able to open only ... can you guide me

    • @ravindradevrani
      @ravindradevrani  9 месяцев назад +1

      There would a .sln file..click on it.
      It will automatically open on visual studio.

    • @sryaan3
      @sryaan3 9 месяцев назад

      How to get my sql server in vs studio

    • @ravindradevrani
      @ravindradevrani  9 месяцев назад +1

      In connection string, Change the server name according to ur SQL server instance name .. you will find it before logging it to sql sever mgt studio

    • @sryaan3
      @sryaan3 9 месяцев назад

      Thank you so much for your response I'm very grateful I'm not getting appsetings.json

    • @sryaan3
      @sryaan3 9 месяцев назад

      I'm doing in vs 2022

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

    Hello sir, I am actually getting an error when I click on person. Win32Exception: the system cannot find the file specified.
    SqlException: A network related error occured while establishing a connection to SQL server. The server was not found or not accessible.
    I am also unable to connect the db

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

      It is clearly the DB related error. If it is happening only in this project then your connection string is wrong.
      But, if you are not even able to open the sql server mgt studio, it might be possible that your sql server service is not running. Please try to find it in google (specially the stack over flow)
      One solution i find there
      stackoverflow.com/questions/61757548/how-to-fix-the-system-cannot-find-the-file-specified-error-in-asp-net-mvc-and-sq

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

    I am not able to rename the folder

  • @lesedipitoyi2228
    @lesedipitoyi2228 5 месяцев назад

    An unhandled exception occurred while processing the request.
    InvalidOperationException: Unable to resolve service for type 'DapperDemo.DataLayer.Repository.PersonRepository' while attempting to activate 'DapperDemo.UI.Controllers.PersonController'.
    I did the project as you did but it keeps on throwing the above error when I click on Person on the NavBar.Can I please get some assistance on how to correct it

    • @ravindradevrani
      @ravindradevrani  5 месяцев назад

      You have to register your service in program.cs .
      Services.AddTransient()

    • @lesedipitoyi2228
      @lesedipitoyi2228 5 месяцев назад

      @@ravindradevrani I did add that as one of the builders

    • @ravindradevrani
      @ravindradevrani  5 месяцев назад

      It looks like dependency injection related problem to me.
      Please checkout these links
      code-maze.com/dotnet-how-to-solve-unable-to-resolve-service-for-a-type/
      stackoverflow.com/questions/40900414/dependency-injection-error-unable-to-resolve-service-for-type-while-attempting
      Notify me, about the situation after this.

    • @lesedipitoyi2228
      @lesedipitoyi2228 5 месяцев назад

      @@ravindradevrani still no progress did you post the project anywhere by any chance so that I can troubleshoot mine using yours

    • @ravindradevrani
      @ravindradevrani  5 месяцев назад

      Yes...
      I always provide source code. Link is available in the description.

  • @mayur2021
    @mayur2021 Год назад

    Hello Sir, please make a video on menus using database. Thank you!

    • @ravindradevrani
      @ravindradevrani  Год назад

      hahaha... hey, it should not be that much bigger deal, if you are following my project-based tutorial for a while or have the understanding of database design, it won't be a big deal.
      Just create table, Menu (Id, Title,ParentMenu_Id, PageLink) , display it in a page. You have to use self-join, if you are creating nested menus.

  • @1BY21CS04_CHARANKS
    @1BY21CS04_CHARANKS 24 дня назад

    hellosir my delete button is not working...i tried copying the code from your githuub as well it didnt work
    can u help me with this

    • @ravindradevrani
      @ravindradevrani  24 дня назад +1

      I have forgot to add try catch block, add try catch block as i have described below. put the breakpoint in catch block and try to check the value of ex.Message or ex.InnerMessage, you will surely find the error.
      public async Task Delete(int id)
      {
      try{
      var deleteResult = await _personRepo.DeleteAsync(id);
      }
      catch(Exception ex)
      {
      // put breakpoint here and try to check the value of ex.Message or ex.InnerMessage, you will surely find error.
      }
      return RedirectToAction(nameof(DisplayAll));
      }

    • @1BY21CS04_CHARANKS
      @1BY21CS04_CHARANKS 24 дня назад

      @@ravindradevrani actuall i was able to solve it… in personRepository .. we have it as sp_delete_person in github but in sql its sp_delete_people .. so just changing the names made kt work

  • @faisalusmani692
    @faisalusmani692 Год назад

    Sir why didn't you register connection string in program.cs file?

    • @ravindradevrani
      @ravindradevrani  Год назад +1

      If you define connection string in apsettings.json then in future,you can change it without recompiling the code.
      You can define connection strings specific to different environments such as development, testing, and production. This allows you to easily switch between different databases or servers based on the environment without modifying the code.

    • @faisalusmani692
      @faisalusmani692 Год назад

      @@ravindradevrani thank you sir👍

    • @ravindradevrani
      @ravindradevrani  Год назад

      👍

  • @abhijeetkale5853
    @abhijeetkale5853 Год назад

    What about database stored procedures

  • @chiragpadhyal9394
    @chiragpadhyal9394 Год назад

    Hello sir, I am getting an error
    Whenever i am trying to add new person it is not getting added in the data

    • @ravindradevrani
      @ravindradevrani  Год назад

      Put a break point and try to look into error msg

  • @badriaran1943
    @badriaran1943 Год назад

    Can you make a video for mapping model to view and view to model.

    • @ravindradevrani
      @ravindradevrani  Год назад

      what does it mean ' mapping model to view and view to model'

    • @badriaran1943
      @badriaran1943 Год назад

      @@ravindradevrani implementation of mappers. For example sometimes we may have model which are not directly mapped to database ex. Maybe iform file(images) which are not stored in database but its path will be stored. So making model for view purposes one and for database purpose another. And connecting them to each other.

    • @badriaran1943
      @badriaran1943 Год назад

      Making viewModel and mappers to map to model.

    • @ravindradevrani
      @ravindradevrani  Год назад +1

      Yeah yeah...i understand.. you are talking about automappers
      I already have created a video
      ruclips.net/video/emzLJNApJO4/видео.html
      it is a short one, but it is in .net core 3.0 and does not have any sound.
      You have to do little bit of modification in program.cs file.
      May be i will create .net 7 version of it.

    • @badriaran1943
      @badriaran1943 Год назад

      @@ravindradevrani okay thank you in advance. You can make a full video on Mysql queries from beginner to Ultima level including join queries. . It would be so helpful for beginners like me.

  • @delightful730
    @delightful730 11 месяцев назад

    Is it DB First Approch?

  • @md.yeasin5214
    @md.yeasin5214 Год назад

    ❤❤❤❤❤

  • @mushaffiq457
    @mushaffiq457 Год назад

    Hello sir you video is good cab i get the source code of the project

    • @ravindradevrani
      @ravindradevrani  Год назад

      yeah i always provide source code in every video.
      Find the Link is in the description.

    • @mushaffiq457
      @mushaffiq457 Год назад

      Sir the link is not working

    • @ravindradevrani
      @ravindradevrani  Год назад

      Ok..i have to see, why it is not working. I will notify when its updated

    • @ravindradevrani
      @ravindradevrani  Год назад

      I have accidentally created a private repository, thanks for noticing. Now everything is working fine.

  • @glrithika8276
    @glrithika8276 11 месяцев назад

    DapperMvcDemo.Data.DataAccess.SqlDataAccess.GetData(string spName, P parameters, string connectionId) in SqlDataAccess.cs
    +
    IEnumerable enumerable = await connection.QueryAsync(spName, parameters, commandType: CommandType.StoredProcedure);
    DapperMvcDemo.Data.Repository.PersonRepository.GetAllAsync() in PersonRepository.cs
    +
    return await _db.GetData(query, new { });
    DapperMvcDemo.UI.Controllers.PersonController.DisplayAll() in PersonController.cs
    +
    IEnumerable people = await _personRepo.GetAllAsync();
    sir why do i keep getting this error? ..it shows internal server error in these statements

  • @nazlimervekilic2377
    @nazlimervekilic2377 Год назад

    Hi sir, i can't create this=>
    procedure sp_update_person(
    @id int,
    @name nvarchar(100),
    @email nvarchar(100),
    @address nvarchar(200)
    )
    as
    begin
    update dbo.Person set name=@name, email=@email, [address]=@address
    where id=@id
    end
    Why?

    • @ravindradevrani
      @ravindradevrani  Год назад

      Command should be
      Create procedure sp_update_person(
      ......
      )
      You are missing the term "create"

    • @nazlimervekilic2377
      @nazlimervekilic2377 Год назад

      i write that
      create procedure sp_update_person(
      @id int,
      @name nvarchar(100),
      @email nvarchar(100),
      @address nvarchar(200)
      )
      as
      begin
      update dbo.Person set name=@name, email=@email, [address]=@address
      where id=@id
      end
      but it does not. mistake is = Msg 207, Level 16, State 1, Procedure sp_update_person, Line 11 [Batch Start Line 0]
      Invalid column name 'id'.
      @@ravindradevrani

    • @ravindradevrani
      @ravindradevrani  Год назад

      Can you check the definition of table "person".
      Error is indicating that it is missing the column id...
      Just run the query
      select * from person
      And check it have a column 'id' or not

    • @nazlimervekilic2377
      @nazlimervekilic2377 Год назад

      table's names are id, name, email, address @@ravindradevrani

    • @nazlimervekilic2377
      @nazlimervekilic2377 Год назад

      okey sir, i found the mistake. thank you@@ravindradevrani