Тёмный

Getting Started with Dapper in .NET 

Подписаться
Просмотров 10 тыс.
% 463

Check out my courses: dometrain.com
Subscribe to my weekly newsletter: nickchapsas.com
Get the source code: mailchi.mp/dometrain/f1onxvjdllc
Become a Patreon and get special perks: www.patreon.com/nickchapsas
This video is sponsored by AWS. To get $50 free AWS credit, check out this link: aws.amazon.com/developer/language/net/getting-started
Hello, everybody. I'm Nick, and in this video, I will show you how you can get started with Dapper in 2025. Dapper is one of the most popular ORMs in .NET and every developer should know how it works.
Workshops: bit.ly/nickworkshops
Don't forget to comment, like and subscribe :)
Social Media:
Follow me on GitHub: github.com/Elfocrash
Follow me on Twitter: nickchapsas
Connect on LinkedIn: www.linkedin.com/in/nick-chapsas
Keep coding merch: keepcoding.shop
#csharp #dotnet

Опубликовано:

 

7 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 98   
@I-PixALbI4-I
@I-PixALbI4-I 22 часа назад
There is should be no debate about "do I need to learn SQL?"... You HAVE TO!
@josephizang6187
@josephizang6187 20 часов назад
I use EFCore. But I think a Dapper deep dive would be great. Dometrain rocks btw
@AlexTushinsky
@AlexTushinsky 16 часов назад
I love Dapper, but struggle to implement third-party grids (Telerik or DevExpress) because they favor EF Code. Would love a video on how to get a grid working with Dapper efficiently! In other words, I don't want to return 100k rows to a grid, just so it can show 20. I want the grid to only pick up the 20 rows it needs, and so far the only way I've been able to do that is with a custom grid implementation with Dapper.
@pere5854
@pere5854 22 часа назад
Nice! Would like a deep dive or have access to some dapper best practice in your course material. One thing that was mentioned in the video - "remember to dispose your connections" - please show this. An additional video where CancellationToken is passed onto the Dapper methods would be nice. An video showing join, splitOn etc. would be helpful for people, I believe.
@Robert-yw5ms
@Robert-yw5ms 21 час назад
He does show the disposal but it's easy to miss if you don't know the syntax. He always does using var connection = await connectionFactory.CreateConnectionAsync(); That using keyword causes the connection to be disposed whenever it goes out of scope.
@BehroozTahanzadeh
@BehroozTahanzadeh 17 часов назад
Thank you so much. Would be great if you can do a deep dive into db connection pooling. 🙏
@kevinlloyd9507
@kevinlloyd9507 18 часов назад
Interesting. When using Dapper, I'd typically use a closed connection. Since it's clever about opening and closing connections (that it has opened). In rare instances (multi command transactions stuff) I'd open the connection before hand. Curious as to your thoughts Nick.
@elraito
@elraito 22 часа назад
Hope you will make a follow up for queries with multiple joins where column names are duplicates cause tgats where ef's linq shines an dapper becomes annoying.
@markovcd
@markovcd 15 часов назад
What is the point of abstracting the connection factory behind the interface when you write prostgres specific SQL in the movie service anyway?
@gileee
@gileee 14 часов назад
True. You'd have to make an IMovieRepository and then PostgresMovieRepo, SqlServerMovieRepo...
@zoiobnu
@zoiobnu 13 часов назад
To abstract how create connection string
@shadowsir
@shadowsir Час назад
@@gileee Oh but then we definitely also need a RepositoryFactory, RepositoryFactoryFactory and then 50 more layers of abstraction just to handle EVERY POSSIBLE DATABASE IN EXISTENCE ☠ --- Or you could just assume that your primary database will never change and keep it at one layer maximum the way sane programmers do it.
@gileee
@gileee 25 минут назад
@@shadowsir I have 2 databases right now in one of my systems, Sqlite and SqlServer. And you never need Repository factories so that's just a nonsensical argument. Although nowadays I just use efcore which removes the need for repo's, but I need a SqliteDbContext and SqlServerDbContext which ironically also require an SqliteDbContextFactory and SqlServerDbContextFactory for scaffolding to function. Repositories worked fine, and efcore also works fine.
@charlesaboujawdeh
@charlesaboujawdeh 21 час назад
Is it a good idea to make a "Wrapper" / helper class around dapper (I've seen people calling it a Generic Repository) instead of having to create a connection in every method we'd just inject that wrapper class and use it? Something that would for example take care of the connection and transactions and disposing them and maybe having default values set for the dapper methods for example the connection timeout or if you use Stored Procedures the majority of the time, set the command type to stored procedure by default?
@a_solonovich
@a_solonovich 16 часов назад
Certainly a hands on! And I wouldn't trust a teammate who doesn't know SQL. Thanks for a great video
@stevepercival4663
@stevepercival4663 15 часов назад
I prefer dapper just because I know what the SQL is doing. It would be good in you follow ups if you go over the various ways of dealing with a parent child relationships(order/order items).
@gileee
@gileee 14 часов назад
I mean efcore is pretty clear too considering it just takes your lambda functions as expressions and just does a transcription into sql. Not perfect control of sql (like it likes to add an automatic "order by Id" which breaks uuid ids somewhat), but good enough for the vast majority of cases. It also supports RawQuery.
20 часов назад
I would like to see your approach for mapping forth and back with object graphs and joined queries (JOIN and/or LEFT JOIN). Find it to be a little complicated and maybe it's my approach is not the best one
@urfriendstefan
@urfriendstefan 6 часов назад
I love dapper . But usually i pass the class objects in stored procedure and make it work . Inline queries require redeployment to modify some logic once deployed .
@mgltuba
@mgltuba 22 часа назад
dapper with T-SQL are most minimal good c# coding
@guilhawarz7291
@guilhawarz7291 8 часов назад
It's crazy how Rider is miles ahead from vs 2022. I need to start using it all asap
@DevelTime
@DevelTime 19 часов назад
Many thank for sharing. Despite I basically hate EF Core 🙂I use it anyway. I guess benefits outweight the problems. Deep dive into EF Core and/or Dapper would be great, SQL does not go anywhere so it is always good to know more 🙂
@IanGratton
@IanGratton Час назад
@nickchapsas - Dapper is really quite nice. I think one of the good things about it is it forces developers to be a bit more hands-on with the DB and that is a really good thing. I come across a great many people who are missing that slightly deeper knowledge of RDBMS systems and I think that stems from hiding behind do-it-all (until they dont) ORMs (same in the Java world with Hibernate). Code first is powerful at times - but not always optimal - learn the technologies you use. I also love that you've created tables that use names that adhere to the Postgres standards. The number of times I've seen postgres DBs with tables/views/fields tha don't adhere to these standards makes me sad - I really don't want to have to be using ANSI quoted column and table/view names when I'm building queries.
@troncek
@troncek 22 часа назад
Is using sql in code wise/good?
@gileee
@gileee 14 часов назад
I'd put it in a repository class, like we used to do, and not worry about it at all. It works great honestly.
@BenvdStouwe
@BenvdStouwe 23 часа назад
> I will show you how you can get started with Dapper in 2025 I guess we'll have to wait a few months to be able to use this knowledge.
@nickchapsas
@nickchapsas 23 часа назад
Future proofing
@mattbristo6933
@mattbristo6933 2 часа назад
@@nickchapsas good answer
@saymehname
@saymehname 19 часов назад
Let's goooo dapper
@GilbertoMadeira83
@GilbertoMadeira83 21 час назад
Great video!
@duszekmestre
@duszekmestre 2 часа назад
Can you do some video about database scaffolding tools? You mentioned EF Core has one but Dapper no. And there are other libraries for that. Maybe you have experience with any to share knowledge with us?
@joost00719
@joost00719 22 часа назад
I love dapper. I used it all the time at my previous job. I was still working on my degree back then, and I implemented a Dapper-like system myself from scratch, and I included that in every single school project, because the school did not allow me to use packages for the data access layer. Probably not as optimized as Dapper itself, but easy inserts, easy reads etc, was really nice. Only thing I wish for is that inserting a list of objects was quicker in Dapper. At my old job we sometimes had to inserts which ranged between 1,000 and 1,000,000 records. Dapper would take ages, while the SqlBulkCopy did it in a fraction of the time. Not sure if this has changed in recent years with Dapper, but it was one of the pain points I had with it.
@Crumbledore
@Crumbledore 21 час назад
For this people tend to use Dapper Plus which is paid (so not great outside a corporate setting) but it has bulk operations that provide near SqlBulkCopy performance(without being restricted to Sql Server databases as well)
@NotACat20
@NotACat20 21 час назад
Dapper not fastest mapper in the world. Linq2db is. And linq2db has lot of extensions about what you want do. Not always is easy, but it is clearly better than EF. Dapper is good, but at same time it is not perfect/best mapper in the world.
@NotACat20
@NotACat20 21 час назад
Good abstractions known about bulk insert and try do as they can. And they can.
@dovh49
@dovh49 17 часов назад
I love Dapper and how close to real SQL it makes it. I just wish it was still under development. There are some features it is missing still.
@gileee
@gileee 13 часов назад
Dapper is just a response mapper over ADO. I don't know what else they could add honestly.
@levmatta
@levmatta 18 часов назад
What about transactions?
@danp602
@danp602 17 часов назад
Would be good to see a best practice example of using the same transaction across different methods in the same repository
@jiM3op
@jiM3op 22 часа назад
Hallo! Would have been nice to tell that you can run procedures aswell... So you dont have to mix SQL and C#... I prefer that approach whenever possible.
@gileee
@gileee 13 часов назад
Stored procedures? What is this 1997.
@ДмитрийКондратенко-б5ь
This approach leads to the fact that business logic begins to be located both in the application code and in the code of stored procedures. It’s terrible when it’s not enough just to look at the code and understand what’s going on, you also need to open some database management studio and look at the code of the stored procedure. It seems to me that stored procedures can be used for places that are particularly critical from a performance point of view, but if there are hundreds of them in a project, this is sad.
@shadowsir
@shadowsir 19 часов назад
1) Learn SQL................ 2) Start with EF Core, then, if you really really need to optimize the queries (e.g. you're constantly fetching and pushing thousands of rows) OR if you need to use some DB-specific concept that EF Core doesn't support (yet), use Dapper. Reason I usually go with EF Core first: 1) EF Core makes renaming things so, so much easier. E.g., in the example Nick gave, if he had just refactor renamed the property on the class directly from "YearOfRelease" to "Year". The compiler wouldn't have yelled at him to also take a look at the queries. (this is why I always use anonymous objects and never just give a Dapper query an object with properties that COULD change at any time). 2) You can be 90% sure that, if the EF Core query builds, everything will just work. It might not be optimal, but it will work. This opposed to Dapper where, if you forget a comma or you didn't use brackets in a way the DB can understand, everything will compile, but you will crash AT RUNTIME 😶‍🌫
@gileee
@gileee 13 часов назад
Dapper methods accept a list but will just run the query n times for n elements in that list. Neither of them support bulk inserts without a paid third party library. Which means you'll be writing code like: movies.Chunk(200).ForEach(c => conn.Execute("INSERT INTO Movies VALUES {string.Join(',', c.Select(m => $"({m.Id, m.Name...})"))};")) It works but it's a hassle, especially since this is unsafe code and instead of m.Id and m.Name you'd actually have to generate unique query parameter names and then generate a dictionary with the values of those parameters. Again it works but you'll notice a Chunk call at the top, because SqlServer for example only supports some 1000 parameters in one query. So if your object has 5 fields you'll only be able to bulk insert 200 objects at a time. Or you convert the data into json and pass that json as a single parameter to the database which I've seen efcore do. Neither Dapper nor efcore help with bulk inserts unfortunately.
@gileee
@gileee 13 часов назад
Dapper methods accept a list but will just run the query n times for n elements in that list. Neither of them support bulk inserts without a paid third party library. Which means you'll be writing code like: movies.Chunk(200).ForEach(c => conn.Execute("INSERT INTO Movies VALUES {string.Join(',', c.Select(m => $"({m. Id, m. Name...})"))};")) It works but it's a hassle, especially since this is unsafe code and instead of m. Id and m. Name you'd actually have to generate unique query parameter names and then generate a dictionary with the values of those parameters. Again it works but you'll notice a Chunk call at the top, because SqlServer for example only supports some 1000 parameters in one query. So if your object has 5 fields you'll only be able to bulk insert 200 objects at a time. Or you convert the data into json and pass that json as a single parameter to the database which I've seen efcore do. Neither Dapper nor efcore help with bulk inserts unfortunately.
@rainair402
@rainair402 4 часа назад
I wanted to point out the same: it's like telling people: why you want to drive a automatic car? Drive first a manual car. Ok but after so many years in traffic you will appreciate the automatic over the manual. I would never write a SQL statement myself. Either it's dead easy. Or the ORM will do the optimization for you. Why to waste hours on something, it can get automated?
@andreyz3133
@andreyz3133 2 часа назад
i wonder when dapper will support Span
@randyriegel8553
@randyriegel8553 9 часов назад
Our main application at work uses EFCore. It was already built. But when I have to do automation applications and such and need database access I use Dapper. Dapper is so easy. EFCore is easy to but take away a lot of control.
@svengijsen
@svengijsen 15 часов назад
What about DB migrations combined with Dapper?
@gileee
@gileee 14 часов назад
He made a video on migrations without efcore.
@YoosufRiffath-c5z
@YoosufRiffath-c5z 17 часов назад
Any way we could pool the connection and re-use it instead of creating a new connection each time? Is it even a good idea to do that?
@danp602
@danp602 17 часов назад
The underlying provider handles this concern
@nickchapsas
@nickchapsas 15 часов назад
Yeah they are already pooled from the provider
@_MoshikoAz_
@_MoshikoAz_ 22 часа назад
does this match with the repository pattern ?
@gileee
@gileee 14 часов назад
The repo pattern historically helped remove hard dependencies to a specific database in code by having an interface like IMovieRepo that is then extended by concrete classes like PostgresMovieRepo or SqliteMovieRepo that contain sql for their specific database. So Dapper is the perfect fit for using repo's like the old times. Although changing DBs is something most people never do on a project.
@yousafwazir286
@yousafwazir286 22 часа назад
Ef core vs dapper
@tanostro
@tanostro 22 часа назад
Linq2Db wins ^^
@MrSchmell
@MrSchmell 18 часов назад
General ergonomics vs thin layer over ADO, which saves you some (not all) boilerplate
@gileee
@gileee 13 часов назад
Go with efcore and add Dapper as a side library if you ever need hand written sql.
@srokoszuio1
@srokoszuio1 13 часов назад
Ahhh finally, not using EF!
@parlor3115
@parlor3115 21 час назад
SqlKata has a much nicer API in my opinion
@gileee
@gileee 13 часов назад
Dapper uses ADO for sql execution and just maps the result set to an object. SqlKata is a query builder that you would use to make an SqlServer sql query string for example and then execute it with something like Dapper. In fact the SqlKata library with execution uses Dapper.
@parlor3115
@parlor3115 12 часов назад
​@@gileeeI know, but I've only seen people either go full raw strings with dapper or full code with ef. SqlKata is a nice middle ground, but it's nowhere near as popular.
@gileee
@gileee 11 часов назад
@@parlor3115 That's true. I've used all 3, but just stick to efcore now.
@cocoscacao6102
@cocoscacao6102 18 часов назад
Meh... Still prefer EF Core for 99% of the things.
@galaridor9266
@galaridor9266 22 часа назад
Is this a reupload or am I having a deja vu?
@nickchapsas
@nickchapsas 22 часа назад
This is about Dapper the other one was Entity Framework
@gileee
@gileee 14 часов назад
Reupload from years ago maybe. Nick did go over Dapper a long time ago, and had several videos where he used it.
@I-PixALbI4-I
@I-PixALbI4-I 22 часа назад
Show also DynamicParametrs and pls say in video what about interpolation like: $"SELECT {m.Id} {m.Title} {m.YearOfRelease} FROM {nameof(Movie)}" Is it worse and explain pls why. THX waiting for a new video!
@SebastiaoJoseph
@SebastiaoJoseph 22 часа назад
I think interpolation can bring risk of sql injection. You can take advantage of dapper using parameters
@brickman127
@brickman127 22 часа назад
you shouldnt use string interpolation for this, if you do you will be creating a new string on every call rather than having one be effectively constant
@fko079
@fko079 21 час назад
I'm using SQLKata with Dapper and I'm kind of independent of DB Provider. No need to think about SQL syntax specifics of each provider.
@I-PixALbI4-I
@I-PixALbI4-I 15 часов назад
@@brickman127 But there is string interning under the hood it will not be creating every call. Google - String.Intern
@Robert-yw5ms
@Robert-yw5ms 23 часа назад
The IDbConnection seems like a bit of a leaky abstraction here. In theory you shouldn't know or care what the concrete implementation is you're using, but in practice you need to know it's the postgres implementation because if you write t-sql (for example) it's eventually gonna not work.
@MaiconLLoti
@MaiconLLoti 22 часа назад
In my company, we have an IQueryDBFunctions interface that stores specific database functions(limit in postgres, rows in firebird). Additionally, you can create an IQueries interface that can be implemented by classes for specific databases and inject in service
@MrWuffels
@MrWuffels 22 часа назад
The knowledge is not necessary for the usage of the IDbConnection, it is for the Dapper extension methods. And they are no abstractions
@Robert-yw5ms
@Robert-yw5ms 21 час назад
The extension methods ultimately rely on methods and properties on the interface. Even if you don't use Dapper, you still need to know the db provider. The documentation for IDbConnection even mentions this in the examples when they write // Create a command to get the server version // NOTE: The query's syntax is SQL Server specific IDbCommand command = connection.CreateCommand(); command.CommandText = "SELECT @@version"; return (string)command.ExecuteScalar();
@MrWuffels
@MrWuffels 19 часов назад
@@Robert-yw5ms yep, I somehow didn't get what you were talking about initially. Of course it's leaky
@gileee
@gileee 14 часов назад
IDbConnection is a built-in interface for every database connection. So I don't see the leak there. Obviously you have to use Dapper with a specific database's sql syntax, but you put those methods into a SqlServerMovieRepository and use an IMovieRepository interface from code. Or alternatively use an sql builder and just configure that instead of repositories, like a more modern factory pattern.
@q7314568
@q7314568 22 часа назад
EF 8 is good enough.
@petropzqi
@petropzqi 23 часа назад
Tell me 3 things you can do in Dapper that you can not do in EF.
@fusedqyou
@fusedqyou 23 часа назад
Who cares? Pick what you like. It's been proven that they both exceed in certain things every one in a while, before the other one adjusts and catches up.
@CodeAbstract
@CodeAbstract 23 часа назад
no
23 часа назад
Its just a reference at this point, still faster at some places
@local9
@local9 23 часа назад
@@fusedqyou How it should be, people need to stop being so damn tribal with software.
@nickchapsas
@nickchapsas 23 часа назад
no u
@NotACat20
@NotACat20 21 час назад
I dpn't see any reason in this video - dislike. It shows some stupid things, but did not add anything new. And in the end - is highly opitionated. Video did not expose nor strong things of Dapper or other solutions, nor did not show EF deficiencies.
@Cam_all-in-on-GME
@Cam_all-in-on-GME 18 часов назад
My guy, the video is titled 'get started with...' You aren't the target audience and that's okay. Edit: I did not realize you too are not a cat. My apologies sir. I'd like to recant my outrage of your outrage. All in on GME, remember to DRS.