Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/a4b6fa728d685d41ffa3cc71a82e087d to your computer and use it in GitHub Desktop.
Save ssougnez/a4b6fa728d685d41ffa3cc71a82e087d to your computer and use it in GitHub Desktop.
var sql = new Sql()
.Select<Movie>(dbContext.SqlSyntax, m => m.Id, m => m.Title)
.From<Movie>(dbContext.SqlSyntax)
.Where<Movie>(m => m.Title == "Avatar", dbContext.SqlSyntax);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment