How to connect C# to SQL (the easy way)

Learn how to connect to SQL from C# the easy way, using a micro-ORM called Dapper (built by the Stack Overflow team). See how easy it is to get data in and out of SQL without complicated generated code or messy DataTables. Source Code: To sign up for announcements about new videos and exclusive discounts, fill out this form: (your email will be kept safe and you will not be spammed). SQL training referenced in the video - Timestamps contributed by: Ralfs HBK 0:00 - Intro 0:34 - Data base connection options: ADO, Entity Framework, Dapper 4:53 - Creating Demo Application: Win Forms 6:38 - Demo Database and Data Model 11:23 - Connection string: helper class 14:58 - Adding connection string 19:45 - Using connection string with helper class 22:25 - Recap 22:40 - Creating a UI form for displaying the data 25:24 - Wiring up the UI form: C# code design 30:24 - Wiri
Back to Top