我有这个查询:
public static class myClass
{
list<something> myList = new list<something>();
public void PopulateList()
{
var myQuery = from a in db.something
where a.someproperty == somevar
select a;
myList = myQuery.Tolist();
}
}
我该怎么做才能使这个查询异步?