public class Foo
{
public int Id { get; set; }
public int UserId { get; set; }
}
这似乎是异步执行此操作的方法:
DatabaseContext db = new DatabaseContext();
Foo foo = await db.Foos.FindAsync(fooid);
如何根据UserId的值异步获取特定用户的所有Foos?
答案 0 :(得分:28)
假设您正在使用Entity Framework 6.0(预发行版):
var userId = ...;
var foos = await db.Foos.Where(x => x.UserId == userId).ToListAsync();