up vote 0 down vote favorite
share [g+] share [fb]

Is there any way to set a property that is not generated by Linq to SQL designer (is not a column in database) in a query?

For example is there such a method like SomeMethod():

IQuaryable<T> query = (from t in context.MyTable
                      where {some conditions}
                      select t).SomeMethod("MyPropertyName", value);

Thanks.

link|improve this question

61% accept rate
feedback

1 Answer

something like

var query = (from t in context.MyTable
                  where {some conditions}
                  select new {t, MyPropertyName = value });

im not sure if this is what you're asking or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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