具有非主键值的FindAsync

时间:2013-09-23 16:38:55

标签: c# asp.net-web-api async-await entity-framework-6

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?

1 个答案:

答案 0 :(得分:28)

假设您正在使用Entity Framework 6.0(预发行版):

var userId = ...;
var foos = await db.Foos.Where(x => x.UserId == userId).ToListAsync();