vote up 0 vote down star

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.

flag

50% accept rate

1 Answer

vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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