Is there any good and, if possible, exhaustive documentation about ESQL in entity framework ?

I'm trying to make a select of an entity object with modification of a property of this one by a method; something like this :

SELECT foo FROM context.foo WHERE foo.Price = AddTaxes(foo.Price)

Thank's by advance !

link|improve this question

67% accept rate
feedback

1 Answer

There is msdn providing some documentation Entity SQL Language

You can also combine it with Linq2Entities with something like

context.foo
    .Where("it.Price == @Price", new ObjectParameter[] 
    { new ObjectParameter("Price", AddTaxes(price) } ).ToList()
link|improve this answer
Thank's for your answer but from where come the price object in your query ? – eka808 Feb 25 '11 at 8:51
@eka808 it's a local variable... – moi_meme Feb 25 '11 at 13:18
where does the it.Price come from? I'm trying from p in context.Players.Where("p.Name like '@playerNameLike'", new ObjectParameter[]{new ObjectParameter("playerNameLike", playerNameLike)}) ? – Maslow Mar 21 '11 at 23:20
@Maslow it is the default name for the current instance so it.Price is the current instance of foo.Price – moi_meme Mar 21 '11 at 23:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.