There is msdn providing some documentation of the SQL language of the entity
You can also combine it with Linq2Entities with something like
context.foo
.Where("it.Price == @Price", new ObjectParameter[]
{ new ObjectParameter("Price", AddTaxes(price) } ).ToList()
source
share