DotNet Core MVC CRUD With Dapper

preview_player
Показать описание
dapper tutorial with stored procedures
.net 6 mvc tutorials for beginners
.net 7 mvc tutorial for beginners
.net core mvc tutorial for beginners
(just ingore above tags)

Hit the 👍 if you like the video.
.................
Please share this video to your circle to support me.
....................
connect with me
..........................................
Become a supporter ❣️:
................................................
#dotnet7 #dapper #dotnetcore
Рекомендации по теме
Комментарии
Автор

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

esbdigy
Автор

This is quality content nice one jita

goodmantshabalala-eivm
Автор

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

theAdventurersWorld
Автор

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

hutchm
Автор

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

mayur
Автор

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

gauravsrivastava
Автор

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
Автор

Do you recommend Dapper for large application vs EF ?

cissemy
Автор

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

chiragpadhyal
Автор

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

faisalusmani
Автор

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

badriaran
Автор

An unhandled exception occurred while processing the request.
InvalidOperationException: Unable to resolve service for type while attempting to activate

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

lesedipitoyi
Автор

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

sryaan
Автор

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

mushaffiq
Автор

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

glrithika
Автор

Hi sir, i can't create this=>
procedure sp_update_person(
@id int,
@name nvarchar(100),
@email nvarchar(100),
@address nvarchar(200)
)
as
begin
end

Why?

nazlimervekilic