I have the follow Linq query ... which executes correctly:
from t in Tasks
where LookupTaskStarted(t.TaskId) == true
select new
{
t.TaskId,
t.Number,
Started = LookupTaskStarted(t.TaskId)
}
Is there anyway to create this as a property on the Linq-To-Sql class? Or do I always have to reference it like this?