Hi. Can i do something like that: I got some entity Customer with Id, Name, Comment
Now i want to get this entity from context with filled id and Name and Comment must be empty. I don't want to query it from database.
in T-SQL it simply:
Select Id, Name from Customers where id=4
Can i do that trick with Entity SQL something like that:
Select Customer.Id, Customer.Name from MyContext.Customer Where Customer.Id=4