Skip to content

Instantly share code, notes, and snippets.

@mikebeaton
Created September 19, 2019 12:16
Show Gist options
  • Select an option

  • Save mikebeaton/97724f8ba67f525ebe9261e620e49f89 to your computer and use it in GitHub Desktop.

Select an option

Save mikebeaton/97724f8ba67f525ebe9261e620e49f89 to your computer and use it in GitHub Desktop.
var db = new MightyOrm<Film>(connectionString, primaryKeys: "FilmID");
var films = db.All();
foreach (Film film in films)
{
Console.WriteLine($"{film.Title}: {film.Description}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment