有没有办法在查询中设置Linq to SQL designer(不是数据库中的列)不生成的属性?
例如,有这样的方法,如SomeMethod():
IQuaryable<T> query = (from t in context.MyTable
where {some conditions}
select t).SomeMethod("MyPropertyName", value);
答案 0 :(得分:0)
类似
var query = (from t in context.MyTable
where {some conditions}
select new {t, MyPropertyName = value });
我不确定这是不是你问的问题。