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?
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?