Created
September 19, 2019 12:16
-
-
Save mikebeaton/97724f8ba67f525ebe9261e620e49f89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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