var sql = new Sql() | |
.Select("*") | |
.From<Director>(dbContext.SqlSyntax) | |
.Where<Director>(d => d.FirstName == "James", dbContext.SqlSyntax); ; | |
var james = dbContext.Database.Fetch<Actor>(sql); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment