C# Tutorial - Repository Pattern with C# and Dapper ORM | FoxLearn

preview_player
Показать описание
We will discuss What is Repository Pattern Benefits of Repository Pattern. An example that uses repository pattern to store and retrieve data from SQL Server database using Dapper ORM in C# .NET Core Windows Forms Application.

Рекомендации по теме
Комментарии
Автор

Dapper is so underrated as an ORM. So easy to work with databases when you have such a great tool.

TurntableTV
Автор

I like this channel very much as there is no annoying sound and included only the essence of materials

entemolu
Автор

One question: Will it work with a later version of the Dapper?

anadibrothers-yourwaytorel
Автор

Plz tell me any model of gsm or usb modem. Who supports c# for offline sms

zeeshanahmad
Автор

1.Can you please make a video about for the Processing time with progress

2. Can you please make a chromium web browser in winform and teach how control it like selenium...

Please🙏 reply

creatur
Автор

How to bind a combox using repository pattern?

coolwaterdvr
Автор

Cam you please make a video of making application config for settings and database and some buttons for disable and enable by that config

creatur
Автор

Make some videos for coding bot(whatsapp, instagram, etc) please

raminguliyev
Автор

Can you configure dependency injection (DI) for winform, plz make some videos for that

nganle
Автор

How to compatible visual studio 19 .net 5 to .net 4

SriHariVasamsetti
Автор

How i can implement this in product repisotory and call this function on grid? because i have 1 million products in db and id1 parameter is mention execute all products query from stored procedure
public async Task<IEnumerable<Product>> GetProducts()
{
using (IDbConnection db = new
{
if (db.State == ConnectionState.Closed)
db.Open();
var result = await db.QueryAsync<Product>("sp_Product", new { id1 = 3 },
commandType:
return result.ToList();
}
}

clidton
Автор

please help me how to save image in database

jonathangumapac
Автор

You need to be carful when opening connections to the database. You need to at least wrap that IDbConnection with a using to dispose it once your done with it.
Great video!

pirithief
Автор

No caso, é melhor ter a camada Business antes da Repository 👍

CezarLisboa