using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data.Common;
using Dapper.FastCrud.Configuration.StatementOptions.Builders;
public int CustomerID {get;set;}
public string CustomerName {get;set;}
public string ContactName {get;set;}
public string Address {get;set;}
public string City {get;set;}
public string PostalCode {get;set;}
public string Country {get;set;}
public static void Main()
List<Customer> customers = new List<Customer>();
using (DbConnection connection = new SqlConnection(FiddleHelper.GetConnectionStringSqlServerW3Schools()))
customers = connection.Find<Customer>().ToList();
FiddleHelper.WriteTable(customers);