Simple C# Data Access with Dapper and SQL - Minimal API Project Part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 554

  • @RobertLenior
    @RobertLenior 2 ปีที่แล้ว +12

    Switched over to Dapper thanks to you Tim! You have been a great help to me. The way you explain things is incredible. Soo much easier than so many others and also your voice helps a lot. No funny accents and very human. Even the tiny errors and correcting them helps.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      I am glad my content has been helpful.

  • @manuelgamezz
    @manuelgamezz ปีที่แล้ว +1

    Right now, I understand dapper, it's really cool to use to any database, SQL server + stored procedure is magic. Thanks Tim.

  • @c130daddy
    @c130daddy 2 ปีที่แล้ว +14

    Another great video sir, please keep them coming. For anyone watching wondering wether his courses are worth it, they totally are! I've been a developer for quite some time and I wish I'd found you and your work a long time ago sir. Can't recommend you to other developers enough! Thank you!

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      I appreciate the kind words.

  • @amirhosseinerambue1214
    @amirhosseinerambue1214 2 ปีที่แล้ว +3

    OH MY GOD , thank u so much , this is very handy , i think every beginner dev should watch this video , thanks bro

  • @sainsoftsoftwares2302
    @sainsoftsoftwares2302 2 ปีที่แล้ว

    I have been searching .net core web api from the last 2 months and my search end here
    It help me a lot, Thanku you very much for this greate informational videos.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      I am glad it was so helpful.

  • @deltaphilip8611
    @deltaphilip8611 ปีที่แล้ว

    When I want to learn something new, Corey is my go to trainer. To show my appreciation I will purchase one of his classes. I learned working with SQL DB's with EF. I like EF, but it made my SQL programming weak. Learning Dapper my alleviate that handicap.

    • @IAmTimCorey
      @IAmTimCorey  ปีที่แล้ว

      I’m glad my content has been helpful.

  • @soroushsaghafi8473
    @soroushsaghafi8473 2 ปีที่แล้ว +1

    That was a great video. Thanks for the good content, organized presentation, clear voice and accent. Also the last but not least, thanks for NOT using Entity Framework.

  • @Mche72
    @Mche72 2 ปีที่แล้ว +6

    That was such a great help for me, thanks tim! I am really new in c# and worked on a project for my company with ef core but now I am thinking to use dapper instead of ef core because of the advantages you mentioned. I just love this simplicity and the separation of concerns with dapper, also it seems to me much easier to understand than ef core.

  • @hamzaanushath
    @hamzaanushath ปีที่แล้ว

    This is my 10th hour of watching your explanation. Mind-blowing ❣

    • @IAmTimCorey
      @IAmTimCorey  ปีที่แล้ว +1

      I’m glad they have been helpful.

  • @waynehawkins654
    @waynehawkins654 ปีที่แล้ว

    Thanks Tim. Amazing video. It's changing my workflow and now do a mix of EF and Dapper. EF to build my database tables, Visual Studio database project to build my Stored Procedures and Dapper to do all the CRUD. The best of both worlds, or maybe good and evil being nice to each other.

  • @aythienutties6223
    @aythienutties6223 ปีที่แล้ว +1

    Hello Corey your videos ready amazing.. since I've been watching these videos I have broadly understanding in programming

  • @haihai2999
    @haihai2999 2 ปีที่แล้ว +1

    FINALLY. My most waiting Topic this month. Thanks Tim

  • @IAm-MB
    @IAm-MB 2 ปีที่แล้ว +4

    Hey Tim... I was watching your videos since sometime but never commented before. I can't resist myself this time. This is a really good video, easy to go along the flow. Nicely explained (as always). I am pretty sure second part will be as interesting to learn as this one.

  • @crispaul27
    @crispaul27 2 ปีที่แล้ว

    Wow... this tool is soooo awesome!!! How did I survive for so long without it!

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      I am glad you found it.

  • @marmazza1
    @marmazza1 ปีที่แล้ว

    Hi Tim, can't find the words to describe my thoughts now. Your contents are awesome, that's it, thank you very much!

  • @MrMarkbad
    @MrMarkbad 2 ปีที่แล้ว

    Wow! Powerful way to setup data access. I am sold.

  • @girornsveinsson7970
    @girornsveinsson7970 2 ปีที่แล้ว +5

    I really like the Contrib extension of Dapper. It allows us to write generic CRUD methods in the case of this video to the SqlDataAccess class and then we don't have to write CRUD stored procedures for every table unless there are some specific side effects that are needed in the sprocs. I think it saves a lot of coding time but of course there might be some reasons such as access control and maybe as you mentioned, performance which would require stored procedures. In my experience though, the Contrib methods are just fine.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      I haven't used that extension before in one of my videos. I'll have to change that. Since it does not use pre-written procedures, it will make it a bit tougher to debug slow queries in SQL, but that seems like a bit of a non-issue with simple queries.

    • @JasonTira
      @JasonTira 2 ปีที่แล้ว

      @@IAmTimCorey I would like to see this, count this as a +1

    • @girornsveinsson7970
      @girornsveinsson7970 2 ปีที่แล้ว +3

      This is an example of how I implemented generic GetAll and Insert methods using Contrib:
      public async Task GetAllAsync() where T : class
      {
      using IDbConnection connection = new SqlConnection(_connectionString);
      var rows = await connection.GetAllAsync();
      return rows;
      }
      public async Task InsertAsync(T entity) where T : class
      {
      using IDbConnection connection = new SqlConnection(_connectionString);
      var entityId = await connection.InsertAsync(entity);
      return entityId;
      }
      In this case I would then use this in the UserData class like so:
      public async Task GetUsers()
      {
      var users = await _sqlDataAccess.GetAllAsync();
      return users;
      }
      Note that the UserModel class need to have the table decorator from Contrib:
      [Table("User")]
      public class UserModel
      {
      //...
      }

  • @RussWilsonII
    @RussWilsonII 2 ปีที่แล้ว +27

    Wonderful first video, Tim! Thank you! For the insert operations, isn't in best practice to return (at a minimum) the ID of the object that was created, if not the entire new UserModel itself? I'm just wondering if practices have changed or if I have misinterpreted things along the way. Maybe I'm conflating the behavior of this w/ a POST operation for a RESTful API, which would typically return the object being created, but I'm assuming that's what this DataAccessLayer would be used for in part 2 (a RESTful API implementation?). Thanks for all you do for the community!

    • @RaMz00z
      @RaMz00z ปีที่แล้ว

      In a Restful API, a Post doesn't return an object, it returns the URI for the newly created object.
      Often the caller just wanted to create somthing, why bother them with a (potentially big) new object in return that will take place on the network ?
      As for inserts in DBb, that is what SQL does, and what EF does as well, so I would find that logical. Particurlarly Updates actually, more than Inserts.

  • @hutchm92
    @hutchm92 9 หลายเดือนก่อน

    Outstanding work here. This has help me design a clearer roadmap to migrate framework project to core replace linqtosql Orm. Thanks again!

    • @IAmTimCorey
      @IAmTimCorey  9 หลายเดือนก่อน

      Thank you!

  • @ZRide72
    @ZRide72 2 ปีที่แล้ว +1

    This is amazing so far. Thank you Tim. Glad I found your videos.

  • @turn1210
    @turn1210 2 ปีที่แล้ว +2

    Your videos always seem to pop up just at the right time for me, I’m in two minds about using EF for my latest project, the cons are outweighing the pros at the minute on a technical level, I tend to lean towards stored procedures as I find all but the simplest db schema just bloats the code/queries when using EF, but, the team all use It exclusively, so this will help give another option.

  • @delw1138
    @delw1138 2 ปีที่แล้ว +1

    Thanks Tim, looking forward to part two!

  • @Benexdrake
    @Benexdrake 2 ปีที่แล้ว

    I love working with SQL and this Video was Awsome, thank you.

  • @SpiritVector
    @SpiritVector 2 ปีที่แล้ว

    Just wanted to say thank you for helping me learn about web development in general. I will soon contribute to this awesome cause!

  • @niangel2704
    @niangel2704 2 ปีที่แล้ว

    Excellent video Tim!! The only weakness that I could think of, of this approach, is the lack of a proper way to get back the Id of the newly created object, by hitting the DB once with the Insert stored proc!! I really value your opinion about this!! Thanx again Tim, for enlightening us with your in depth knowledge of what we all love!!
    I look forward to hearing from you...

    • @rolfherbert2051
      @rolfherbert2051 2 ปีที่แล้ว +1

      If you are using an SP you can return an integer value or if you switch on NOCOUNT you can return any data such as SELECT SCOPE_IDENTITY(), or SELECT FIRSTNAME, LASTNAME FROM USERS WHERE ID = SCOPE_IDENTITY() to get back the ID. If you were writing your own SQL code you can combine multiple statements so "SET NOCOUNT ON; INSERT INTO USER (FIRSTNAME, LASTNAME) VALUES (@0, @1); SELECT SCOPE_IDENTITY()

  • @integrsolutions7064
    @integrsolutions7064 2 ปีที่แล้ว

    Hey Tim, I am a big fan of you - and even suggest your videos to newbies.
    I am applying Dapper to my main project, I did a basic dbcontext myself with MySQLConnector (that I could type Data.Table(procedureQuery, parsObjectArray). It worked well by now but everytime I need to add something is still painful.
    With your videos I have learned coding patterns like nowhere. Keep it up! ♥

  • @eloyrolandocanchanyabalbin4692
    @eloyrolandocanchanyabalbin4692 2 ปีที่แล้ว +1

    Thanks a lot sensei Tim Corey, regards from some place in Perú.

  • @princeonukwili996
    @princeonukwili996 ปีที่แล้ว

    Thank you so much sir...I never really liked the idea of using ORM's in my .NET apps, but from what I've seen in this tutorial, I thing I'm gonna start implementing Dapper in any new application I'll develop😌.

  • @swordblaster2596
    @swordblaster2596 2 ปีที่แล้ว

    Excellent "starting from scratch" video.

  • @thomasdewitt6719
    @thomasdewitt6719 2 ปีที่แล้ว

    Tim, this was very informative and will make me go back and refactor one of my sample projects to get a firm grip on this subject to fully understand it

  • @Eamo-21
    @Eamo-21 2 ปีที่แล้ว

    Beautifully simple solution. Thanks Tim!

  • @JasonTira
    @JasonTira 2 ปีที่แล้ว

    Its like you are reading my mind on what I want/need

  • @therealrolanddeschain9253
    @therealrolanddeschain9253 2 ปีที่แล้ว +6

    Ok, probably I'm just weird for asking, but could you not somehow default the parameters to null if you don't need one, or use a single parameter (e.g. 'ID') directly? I assume this is a non-issue, but the new-ing up of dynamic objects makes me a bit uneasy. For multiple params it makes perfect sense to me.

  • @1kuruvchi
    @1kuruvchi ปีที่แล้ว

    An absolutely great tutorial, thank you, Tim!

  • @family--A
    @family--A 2 ปีที่แล้ว +7

    Thank you very much, it was really helpful!
    Could you please add dynamic sorting, paging and filtering on part 2?
    Or at least point me to some example of how this could be achieved.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +4

      That isn't in the plan for the next video (which is already recorded). However, I'll keep that in mind for the future.

  • @scotttct
    @scotttct ปีที่แล้ว

    Great Tutorial, Thanks. Looking to speed up my web that utilize EF6, Wow, all in an hour. Tim you are awesome!

  • @adisakyfx
    @adisakyfx 2 ปีที่แล้ว

    I really need part 2. Waiting for it. Good job.

  • @MaddCoder
    @MaddCoder ปีที่แล้ว

    Awesome video, this has really helped me with my new project. Thanks so much Tim.

  • @michlef774
    @michlef774 2 ปีที่แล้ว

    Very nice presentation. Thanks for sharing your Knowledge. Keep going........

  • @philipvandenheever2084
    @philipvandenheever2084 ปีที่แล้ว

    Brilliant as always Tim.

  • @rolfherbert2051
    @rolfherbert2051 2 ปีที่แล้ว

    Hi there,
    Thanks for all the resources. I know alot more about MSSQL than I do about .NET so thanks for getting me learning new skills.
    Few comments about stored procedures; stored procedures are not inherently faster than ad-hoc statements, all plans are compiled and cached ad-hoc or otherwise. MSSQL will consider dynamic SQL to be a different query and so will create a new plan for every execution - but if you use parameters (please god use parameters) then the query plan is reused for each different parameter.
    If you wrote this sql as a dapper query 'SELECT FIRSTNAME, LASTNAME FROM USERS WHERE FIRSTNAME = @0' and substituted in the parameter at run time then the query plan would be reused regardless of which parameter is used.
    You get parameter sniffing issues with both adhoc and SPs, where the same plan is grossly wrong for different parameters but you are definitely using the same query plan.
    If you write dynamic sql eg "SELECT FIRSTNAME, LASTNAME FROM USERS WHERE FIRSTNAME = '" + firstName + "'" then you would produce a different query plan for every query.
    Parameter sniffing is where the plan is optimised for the first parameter used but maybe grossly inefficient for other parameters..you get weird effects where you run the query in SSMS and it runs quick but your app runs slow. Its a whole different topic.
    Stored procedures are not faster than parameterized queries...its the same to the engine. Replicating simple SQL statements (even update ones) in a SP is no faster and if you know SQL is probably slower to create. What stored procedures definitely do is act as a gatekeeper to your database and prevent unstructured data access.
    Thanks again for producing so many quality learning resources

    • @rolfherbert2051
      @rolfherbert2051 2 ปีที่แล้ว

      for the pre-script reasoning....the EXISTS keyword is used here rather than say IF (SELECT COUNT(*) FROM [USER]) > 0 because EXIST will stop retrieving rows as soon as it finds one...so IF NOT EXISTS (SELECT 1 FROM [USER]) will only ever return one row regardless how many rows there are. Its the exist keyword which is making all the speed difference not the 1 or * which if you used in an EXIST statement would be an unmeasurable difference. In normal selects * would be slower cos it has to enumerate the columns first. COUNT(*) I believe always produces an index or table scan so it could be much slower if the table was large even with an exist (it is only returning a single row anyways)

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      Thanks for sharing. I agree on the stored procedure vs ad-hoc caching. What I believe I was trying to communicate is that stored procs that are used are always cached (after the plan is created), whereas ad-hoc isn't always cached (if the signature changed) so you get a 100% vs a possible 100% cache reuse.
      Also, you are right about exists. 👍

  • @bobclemens8065
    @bobclemens8065 2 ปีที่แล้ว +3

    Would it make sense to move the stuff that's in the 'DBAccess' folder, namely the SqlDataAccess class, to a separate project, so that it could be reused with other projects that use other SQL databases? It knows nothing about specific tables, columns, etc., and it encapsulates all the Dapper stuff, so as you point out it's the only part of the application that deals with either Dapper or Sql.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      Yep, that would be ideal, and it is something I've been meaning to do for a while. I would like to abstract it to a NuGet package. Basically a Dapper helper.

  • @JasonTira
    @JasonTira 2 ปีที่แล้ว +7

    After watching the whole video, and following along of course, it is very similar to your older video with a ton of wonderful little tidbits thrown in for the updated versions, and looks like a bit cleaner code as well. I still need to take your dapper course to get a better understanding of what is available. The quick intro to the stored procedures covered more than I thought it would in such a short time.
    I would like to see a 10 min video on how to change this DataAccess layer over to a different db like you mention.
    My current work process is using docker with a restored db from a backup from your video ( th-cam.com/video/Yj69cWEG_Yo/w-d-xo.html ), setting up in the appsettings.json and appsettings.development.json so when developing/updating the application ( also from your videos, I believe the paid course - worth every penny ). I just have to make sure I start the container, then when I publish it out it just moves to the live db. This gives a great way for me to just spin up a backup and replicate any issues the users are seeing in a safe environment for me to break.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +4

      Awesome! Thanks for the suggestion. It sounds like you are getting a lot of value out of my content.

    • @JasonTira
      @JasonTira 2 ปีที่แล้ว

      @@IAmTimCorey very much so. I can't thank you enough.

  • @thomstunes6485
    @thomstunes6485 2 ปีที่แล้ว +1

    Exactly what I've done after seeing your older tutorial on dapper as my data access layer. I'm curious to see if my approach is close than yours then!

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      Sounds great!

    • @thomstunes6485
      @thomstunes6485 2 ปีที่แล้ว

      @@IAmTimCorey The main difference is that I did not isolated DataAccess into its own DLL. I've put all objects and calls through Dapper into the API's models. Which I guess is fine for me. Small DB, only for our entreprise using...
      The other big difference is the technical level but I cannot compete with God himself :)

  • @muhammedeminokcu1327
    @muhammedeminokcu1327 2 ปีที่แล้ว

    Awesome content for beginner to be a LEO ;). Thank you.

  • @bernardlogador5364
    @bernardlogador5364 2 ปีที่แล้ว

    Thanks Tim for this! Exactly what i need at the moment

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      Glad it was helpful!

  • @michaelday6987
    @michaelday6987 11 หลายเดือนก่อน +1

    Just an FYI. I had some strange versioning issues.
    1. I had to go to the UserDB Properties and change my target platform (Sql Server 2019).
    2. I also had to choose the Generate Script option in the Publish window, to get the system to recognize my unique setup. It failed loading the schema and data when I just tried to publish.

    • @IAmTimCorey
      @IAmTimCorey  11 หลายเดือนก่อน

      The first one does depend on where you publish it. If I publish it to LocalDB, I actually roll it back to SQL 2016. As for it not doing the publish correctly, that's interesting. I wonder what the configuration setting is that is preventing it.

  • @BinaryNexus
    @BinaryNexus ปีที่แล้ว

    This is awesome! Great video! I never take enough advantage of generics to be honest.

  • @Mercino311
    @Mercino311 2 ปีที่แล้ว +2

    Hi Tim, do you have any resources for understanding how to work with Dapper with Identity? Seems to me like a complete overhaul of their interfaces may be required but I'm afraid I might leave vulnerabilities. I really like the idea of using dapper and SQL Data Tools but can't seem to commit to it without some understanding of how to work without EF and identity.
    Small Edit: Just to add some context. For me this would include working in MVC with EF and Identity.

  • @AliAktepee
    @AliAktepee 2 ปีที่แล้ว +1

    Hey Tim,
    Another great tutorial thank you. But I have one hesitation, if I recall correctly, PostgreSQL does not use dbo prefix? So I will have to re-write a separate UserData for it? Or is there a shorter way?
    I can probably do something in DataAccess class like if connectionID == "Postgres" then replace "dbo." with "" but I don't think this is the right way to do it. Maybe you mentioned this in Part-2 , moving to that one now. Thanks again for this great tutorial.

  • @mikebreeden6071
    @mikebreeden6071 2 ปีที่แล้ว

    Fantastic... I'm going on to the next one... I'll have to pay for another class of some sort. Cash is almost as flattering as imitation...

  • @Ronaldos267
    @Ronaldos267 2 ปีที่แล้ว +3

    Hello Tim, thanks again for a wonderful tutorial. I generally avoid to use stored procedures as I do not want to encapsulate business logic in the database. Also it is also recommended not to encapsulate business logic at database level. I try to use SPs for creating reports etc. My simple question is - what is your recommendation I mean when to use stored procedures?

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +5

      I disagree with the "no stored procedures" or "no business logic in the database" recommendations. We need security in depth. If the database layer is fully permissive then you are relying on applications to do all of your security. That's fine as long as those applications all have the same business logic. Also, don't forget that there is a security issue here - your connection to the database. If a user has access to it, they can bypass the business logic and insert data directly that might be harmful/malformed. Plus, if you use stored procedures, you can lock down your database much more than if you use ad hoc queries.

    • @easy-e4472
      @easy-e4472 2 ปีที่แล้ว

      ​@@IAmTimCorey Tightly coupling the API to a specific DB is generally frowned upon to my understanding. In this example, wouldn't your business logic become dependent on a SQL Server backend? BL in SPs are also more difficult to unit test, can be more difficult to maintain when complexity is involved, etc.... Always exceptions of course and tradeoffs to be made.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      No because you don’t rely on the logic in the stored procedures. Also, the SP logic is limited.

    • @Ronaldos267
      @Ronaldos267 2 ปีที่แล้ว +1

      @@IAmTimCorey Ok thank you for your advise. I understand the security point of view. I asked this question because we recently feel pain when we had to change our backend database from SQL Server to Oracle. The product that I am working on has a SQL server database. But recently a new client wanted Oracle as the backend instead of SQL server. Then we had to do a lot of work in converting SQL SPs into Oracle SPs. That was a real headache. But almost all the EF queries ran successfully without doing any changes with Oracle as the backend. This was my main concern.

    • @rolfherbert2051
      @rolfherbert2051 2 ปีที่แล้ว +2

      Stored procedures are not faster or better than ad hoc, and some logic is always better in your app (unless you are an expert on creating set based queries then loops and the like should not be in your SPs) but store procedures most definitely keep your developers and app away from the data. If your app only uses stored procedures no one is ever going to be able to accidentally write a DELETE FROM USERS WHERE NAME=NAME type query, its just not possible if that user does not have access to the data but only to the SPs.

  • @BaiLani
    @BaiLani 2 ปีที่แล้ว

    Real thanks to Tim and community for helping out in comments!

  • @LoriPerch
    @LoriPerch ปีที่แล้ว +2

    Tim, Great video! I love the idea of using generic data access with dapper. But, I don't understand how I can use generic data access with complex models (i.e. models that have some number of sub-models within them). For example, a customer model where the prefix isn't just a string... It is a prefix model. ...and a suffix where the suffix is a suffix model. Using Dapper, is it possible to use just one generic data retrieval function regardless of how many sub-models there are within my model? Thank you so much for your videos. Looking forward to your reply. :)

    • @IAmTimCorey
      @IAmTimCorey  ปีที่แล้ว +1

      That takes developing a bit of logic, but that's normal. Think about how SQL stores data. It stores data in rows. How do you get a complex object back in one row? You can't. What you need to do is either create a query that puts all of the data in a row (which would be a model without sub-models) or you need to do more than one query.
      Let's talk through an example of more than one query. Let's say you have a set of people and those people have one or more addresses per person. OK, so the first query would be "get all the people you want". That gives you the "main" model's data but leaves the List empty in each PersonModel. Now, do another query that is selects all of the addresses for all of the people selected in the original query. Then in C#, use LINQ to put those AddressModels into the correct PersonModels.
      That seems like a lot of work, but that is extremely efficient compared to what EF is doing. Also, when you do that, you start to rethink if you need all of that data. Odds are you don't actually need it all. That makes your application even more efficient. For instance, maybe you don't look at each person's list of addresses but you do want to know how many addresses they have. Cool. You can return that number as a column in the first query. Then, if you do want to actually look at the addresses a person has, you can load just those addresses up when requested.

  • @claytonmyers6211
    @claytonmyers6211 ปีที่แล้ว +2

    Hi Tim,
    In your advanced Dapper tutorial, you showed how to combine multiple datasets with Dapper. Do you know of a good way to write a generic implementation as done in this video, but capable of joining multiple datasets? If not, what would be your preferred way to handle such an issue (IE: Loading a user model which may have a phone model as a property)

  • @Astral100
    @Astral100 ปีที่แล้ว +1

    I wonder if it is possible to unit test db layer with this approach same as you can with Entity Framework by using memory implementation of EF?
    That is one benefit I think EF has over every other approach (as far as I know) is that you can easily test all the operations that manipulate the database.

  • @kevingates5851
    @kevingates5851 2 ปีที่แล้ว

    You always have timely videos.

  • @arianhaghani3452
    @arianhaghani3452 ปีที่แล้ว

    Thank you very much for this awesome video 😇

  • @scotttct
    @scotttct ปีที่แล้ว +1

    Tim Love using your videos to learn proper coding patterns and new technique, after this I wonder what you would recommend for data security, already have an Encryption Library, so any help with a proper pattern to secure the api other than that would be awesome.

  • @ianwanjala8621
    @ianwanjala8621 11 หลายเดือนก่อน

    hey tim, very very nice course. So my question is, is there a way to log what dapper is doing while executing those procs? i.e what if in the update proc I had a method that checked whether a user with Id 2 exists and I found out he/she doesn't, in such a case I might be returning 31 from the proc. Is there a way to check for such a value being returned from the .net application?

  • @PaulSebastianM
    @PaulSebastianM 2 ปีที่แล้ว

    If I'm not mistaken, the first time you new up a SqlConnection, it creates an internal connection pool so later new ups just return a free connection from the pool.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      It does (unless you turn it off, which you should not). Closing the connection releases the connection to the pool. The system will close active connections if they aren't being used. It will also open new connections if you clog things up and don't properly close out connections.

  • @selahattinkaradogan2744
    @selahattinkaradogan2744 2 ปีที่แล้ว

    very useful video for me thanks tim

  • @chidieberelevi3344
    @chidieberelevi3344 2 ปีที่แล้ว

    Thank you for this Tim 🚀🚀 really helpful

  • @roncoy887
    @roncoy887 2 ปีที่แล้ว +1

    Hi Tim, Thanks for your great tutorials, I am an enthusiast rather than active developer, you have advised the seperation of identity context from data contextand I understand why, do you have anything on how to implement that in an .net core app, i.e. do you have 2 active contexts at the same time.
    Thanks again Ron Coy

  • @bulelf
    @bulelf 2 ปีที่แล้ว +2

    Great video! What are your thoughts on the scalability of this approach? Is a small query string here and there considered a bad practice? My only concern with stored procedures is that when looking at the code, you can't actually tell how you got that result, you'll have to go and find the stored procedure.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +7

      Well, since we built the stored procedure in the database project, it is all right there in our solution. As far as writing T-SQL in C#, I prefer not to do that because we are mixing our two systems. We are relying on C# to provide the SQL statement, which means SQL cannot optimize the statement until we pass it over. That's not ideal. The issue isn't as much scalability as it is one of being easy to maintain. If you are evaluating long-running or expensive queries, knowing where they are located is a real time-saver. If you think finding the stored procedure is inconvenient, try having a SQL statement that was dynamically generated that you have to figure out where it came from in your source code.

  • @mahmoudalballah3387
    @mahmoudalballah3387 2 ปีที่แล้ว

    Amazing as always!

  • @mads3564
    @mads3564 2 ปีที่แล้ว +1

    Hi Tim, what are the benefits of creating the SqlDataAccess and UserData classes as non-static classes as opposed to static classes?

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      I can control their scope and distribute them as needed via dependency injection. That allows me to replace them with mocked versions for unit testing, and it allows me to decide if I want different versions used in different places or if I want to use the same instance (Transient vs Singleton).

    • @mads3564
      @mads3564 2 ปีที่แล้ว

      @@IAmTimCorey Thank you, that makes sense.

  • @alfonsdeda8912
    @alfonsdeda8912 2 ปีที่แล้ว

    Hi Tim. If I want to connect to different data providers, for example SQL connection and oledbconnection, i create two repository sqlserverrepository and Oracle repository that inherit from generic repository interface.
    Should I change in every repository the IDBconnection for each different method or create a factory method that choose the idbconnection and create only once repository that get the IDBconnection from this factory?

  • @torrvic1156
    @torrvic1156 11 หลายเดือนก่อน

    Thank you so much for enlightening us Mr. Corey!
    Can you tell me if SqlDataAccess class methods can be used with MySql instead of Microsoft SQL without significant modification? I am not sure if StoredProcedures will function the same way. And as far as I understand Identity is an Auto_Increment in MySql.

  • @diligencehumility6971
    @diligencehumility6971 2 ปีที่แล้ว +1

    Hey Tim. Maybe you could do a video on how to do a scalable app? Now you have covered most aspect of real-world-applications, and lots of us do have real world app's out there, customers use. Now scalability becomes a problem, since one server instance is not enough. Should we do Azure Functions and let Azure scale our app? Should we do CosmosDB instead of MS SQL, because it's easily scalable? What about the serverless options? Serverless Functions? Serverless CosmosDB? There is even a serverless SignalR service. Like to hear your thoughts on this

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +3

      I will add it to the list. Thanks for the suggestion.

  • @tresaidh3y90
    @tresaidh3y90 2 ปีที่แล้ว +1

    Hey Tim once again another beautiful video. Do you have a video explaining Lambdas? The process seems similar to Java however your tutorials are so great I would love to see one on Lambdas expressions

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/

  • @ommadon84
    @ommadon84 ปีที่แล้ว

    really good video explaining how to build the api, made a different project with various stored procedures and it all worked fine testing it in swagger. It says in the video that it can be used with blazor server and loads of other stuff, but then there is nothing explaining how to link it all up, and its not much use having the api if you don't know how to link it to the project

    • @IAmTimCorey
      @IAmTimCorey  ปีที่แล้ว +1

      That's a different topic, though. This video (actually 2 videos) is about creating an API. Consuming that API is outside the scope of the video. However, I have multiple videos that cover consuming APIs, including this one: th-cam.com/video/cwgck1k0YKU/w-d-xo.html and this one: th-cam.com/video/HH8drNbai8w/w-d-xo.html In the TimCo Retail Manager course here on TH-cam, we also build an API and consume it from multiple clients.

  • @tosinakinyemi3948
    @tosinakinyemi3948 2 ปีที่แล้ว

    Thanks' Tim for another awesome video.

  • @andysmith872
    @andysmith872 2 ปีที่แล้ว

    Firstly - first video I've seen of yours Tim - awesome - I'm now a subscriber / fan!
    Q - LoadData is only implemented with IEnumerable. Why not one also for returning one row? Is this out of simplicity for the demo/video or do you *always* do it this way? Thanks.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      I always do it this way because an IEnumerable can return 0, 1, or many records. I don't usually have a need to create a separate method with a different name (since you cannot overload a method by only changing the return type) just to limit the results to one record.

  • @ralphgoyarts8930
    @ralphgoyarts8930 2 ปีที่แล้ว +1

    Hi Tim, I brushed up my knowledge of SQL and SQL server in your “SQL Databases From Start to Finish” course and I learned how to do most of the SQL Server development in the “System.data.SqlClient”. This helped me a lot!
    The SqlClient draws the database into the application development environment and offers a single source development here. I am fully adapting the Only Stored Procedure approach to protect my data. I consider the relation ships between tables as an important part in that as it guarantees the relational characteristics of the database against programmer mistakes.
    But I am missing the relationship definitions in the SqlClient. Is there a way to overcome this?
    I Appreciate your videos, keep them coming.

  • @kawthooleidevelopers
    @kawthooleidevelopers 2 ปีที่แล้ว

    Wow... love this workflow. I honestly have been looking for something that is easy to work with. I've tried FluentMigrator and the DB initializer technique and I think this is a best approach for me now, since I don't want to use EF Core. Every other course just use EF core but I want my codes to be optimized, thus Dapper. However, I find it clumsy to work with it when I need to make changes to the models or just simply seed more data. Thanks for the great content. I've canceled my every other subscriptions. I will sign up to your course soon.

  • @RC-uq4lw
    @RC-uq4lw ปีที่แล้ว

    Great video. If I wanted to write integration tests for this database, what approach would you suggest for keeping the test DB schema synced with the prod version (or db project) and for resetting the DB to a known state between tests. With EF, this is fairly straightforward, but coming up with an approach to use without EF is a little tricky. Any ideas?

  • @DiscipleW
    @DiscipleW 2 ปีที่แล้ว

    Can't wait for part 2

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      You won't have to wait long.

  • @MADCookieTube
    @MADCookieTube 2 ปีที่แล้ว +1

    Why not add "Async" to the name of the async methods? (LoadData & SaveData)

  • @chaikuanhong
    @chaikuanhong 9 หลายเดือนก่อน

    Excellent video

  • @bipinchandrakant3085
    @bipinchandrakant3085 2 ปีที่แล้ว +1

    Wow! This is simple and clean. can you please recommend an optimal way to implement retry logic along with Dapper? Let's say one of the DB operations fails due to a deadlock/intermediate connectivity issue, is there a direct way to retry like Polly for HTTP? As of now, I use a recursive function to retry one more time and before failing, but I am sure there should be a better way to handle this.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +1

      I would probably look at Polly for retry logic.

  • @techsamurai11
    @techsamurai11 ปีที่แล้ว

    One thing that wasn't apparent was how Dapper functioned because I saw the using Dapper statement but I didn't see a single instantiation of a Dapper object or helper. I sort of figured out that it extends the DBConnection object adding those methods but I don't think everyone will infer that. Still, I'm not sure that I prefer that over an explicit Dapper (ala SQLHelper) object that encapsulates that functionality.

  • @msizinxumalo6585
    @msizinxumalo6585 ปีที่แล้ว +1

    Thank you

  • @evrozah1
    @evrozah1 2 ปีที่แล้ว +2

    Hi,Tim.
    Why InsertUser,UpdateUser and DeleteUser are not async methods is you use Task as return type ?

    • @janne_kekalainen
      @janne_kekalainen 2 ปีที่แล้ว +6

      Because they don't have to be.
      Await basically "unwraps" a task so that you can work with the output. Since we don't care about what's in the Task, we don't have to await it. These methods are just shortcuts with set parameters.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +4

      @Janne is correct. Thanks for helping out!

    • @c130daddy
      @c130daddy 2 ปีที่แล้ว +1

      I had the exact same question. Thanks!

    • @BaiLani
      @BaiLani 2 ปีที่แล้ว

      @@janne_kekalainen many thanks !

  • @Dimitris.Christoforidis
    @Dimitris.Christoforidis 6 หลายเดือนก่อน

    Hello Tim!! I read in a article that is good practise to use .ConfigureAwait(false). Example await conn.ExecuteAsync(sql, param)
    .ConfigureAwait(false); Is it good practise ?

  • @JeetKhinde
    @JeetKhinde 2 ปีที่แล้ว

    Thanks for a great video. At 1:08:00, I guess it might be better in the long run if you return inserted record after inserting it in DB and the same is true for the update and delete method.

  • @Kevin-mb4xf
    @Kevin-mb4xf 2 ปีที่แล้ว +2

    Hey Tim, thanks for making this video. I was looking for a up-to-date tutorial on dapper.
    Could you tell us when you will release part 2?

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +3

      Next week.

    • @Kevin-mb4xf
      @Kevin-mb4xf 2 ปีที่แล้ว

      @@IAmTimCorey thank you!

  • @Spirittism
    @Spirittism 2 ปีที่แล้ว +1

    How much does Microsoft pay you? because your literally creating future .Net programmers, good job Tim.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      They don't pay me anything. I do this to help the community, and now the community is supporting me in return, which allows me to provide even more free content.

    • @Spirittism
      @Spirittism 2 ปีที่แล้ว

      @@IAmTimCorey whatever the reason, you have my thanks, as should Microsoft.

  • @LiamGlanfield
    @LiamGlanfield 2 ปีที่แล้ว +1

    Question with the single line methods on the UserData class, why don't you need 'await'? For example getUsers doesn't have await? On a side note thanks for the videos, they have been very helpful and educational.

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว +2

      You only need to await a call when you need to do something with the results. If the rest of the code doesn't rely on the results of your async call, you can skip the await. The caller will await the call, since it needs to do something with the results, but by not adding an await where you aren't waiting on the results, you lower the overhead of that call (every await adds overhead).

    • @LiamGlanfield
      @LiamGlanfield 2 ปีที่แล้ว

      @@IAmTimCorey I'm not a developer but trying to broaden my knowledge. A lightbulb has just gone off and now have a new understanding. When I set a method to return Task but I am returning an IEnumerable I didn't stop to think I could also return the task! The API call I assume will then await and get the result from the Task. Makes far more sense now. I can see some improvements to make in my own code now. Thanks for the reply do appreciate the time taken to do that.

  • @maneshwar3054
    @maneshwar3054 2 ปีที่แล้ว

    10:45
    Possible reasons for intellisense issue,
    1) User is a reserved keyword, so brackets required for intellisense to work, i.e. use [User] instead of User.
    2) Save the file User.Sql before using it in SPs

  • @jeremystone9067
    @jeremystone9067 2 ปีที่แล้ว +1

    Is the UserData basically the same thing as a Service?

    • @torrvic1156
      @torrvic1156 11 หลายเดือนก่อน

      Looks like that. It reminds me of repository pattern here.

  • @RajashekarReddydasari
    @RajashekarReddydasari 2 ปีที่แล้ว

    Thank You so much. really helpful video

  • @gabriel.dacostadorea
    @gabriel.dacostadorea 2 ปีที่แล้ว +1

    Great tutorial, Tim! But what if my stored procedure has parameters? I am using this exactly same code of the video, but when i change to my procedure, it returns a HTTP 500 code, with the message "The procedure or function 'procedure_name' expects parameter '@parameter_name', which was not provided."
    Can you help me?

    • @IAmTimCorey
      @IAmTimCorey  2 ปีที่แล้ว

      The stored procedures I'm using are using parameters too. For instance, at 1:08:33, on line 32 you will see the spUser_Insert stored procedure being called. I am passing in two parameters (FirstName and LastName). So the stored procedure definition will have two parameters that match those names. If I wanted to pass in another parameter but didn't have a variable named the same as the parameter, I would just add it like so: "{ user.FirstName, user.LastName, Age = 34 }" where @Age was declared in the stored procedure.

  • @mohamedzakaria9124
    @mohamedzakaria9124 ปีที่แล้ว

    Thanks Tim,
    How can I return a list of users and use multi mapping with this way
    for example return data depend on tow tables

  • @Reaper7mk
    @Reaper7mk 2 ปีที่แล้ว +2

    Is this the repository pattern or some version of it? I would love a video on that at some point! Thank you Tim

    • @torrvic1156
      @torrvic1156 11 หลายเดือนก่อน

      Looks like that. SqlDataAccess is like a repository and UserData is like a service of some sort tied with SqlDataAccess.

  • @joshme8157
    @joshme8157 2 หลายเดือนก่อน

    pretty cool video, really like that you used a sql database project! One question, for your get user method, is there a reason you used FirstOrDefault over SingleOrDefault? In the database since the id is the primary key if it returns more than one record wouldn't you want it to throw an exception?

    • @IAmTimCorey
      @IAmTimCorey  2 หลายเดือนก่อน +1

      The database enforces uniqueness, so Single vs First does not matter. We don't need to check to be sure there aren't two entries with the same primary key. So the difference comes down to performance. FirstOrDefault is more performant than SingleOrDefault. So in this case, I chose FirstOrDefault.

  • @louiseeggleton7420
    @louiseeggleton7420 2 ปีที่แล้ว

    Is it possible to do this with business models that require a constructor? I like my models to require that their creation be done through a constructor so that they are instantiated properly and always in a valid state. Or does this technique require a paramterless constructor?

  • @troyincarnate8105
    @troyincarnate8105 2 ปีที่แล้ว

    this is similar to what i did but much better, time to use

  • @AthelstanEngland
    @AthelstanEngland ปีที่แล้ว

    Is there a similar VS 'project' for MariaDB (MySql)? I couldn't find anything that allows the same management, source control etc. as this SQL Server project.

    • @IAmTimCorey
      @IAmTimCorey  ปีที่แล้ว

      No, there isn't.

    • @AthelstanEngland
      @AthelstanEngland ปีที่แล้ว

      @@IAmTimCorey thanks Tim for the prompt reply. That will save me hours of searching, wondering what I've missed! 😀

  • @Steph-jb2yk
    @Steph-jb2yk ปีที่แล้ว

    Great video, helped me a lot in my work!
    One thing I didn't understand: the "Save data" method in the "ISqlDataAccess" interface has the following signature: SaveData(string ..., T ..., string ... = "Default"). When we use this method in the UserData class, we don't always "adhere" to this signature. For example: _db.SaveData("dbo.spUser_Update", user). It appears we don't pass in / specify the argument. I would have expected something like: _db.SaveData("dbo.spUser_Update", user). Why is the generic parameter not required to call this method? And am I right to assume that the string argument can be dropped because a default value has been defined in the SaveData method?