我们有两个实体,用户和个人。
public class User
{
public int Id { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public int PersonId { get; set; }
public Person Person { get; set; }
}
和
public class Person
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
每个用户都有一个人,但不是每个人都有一个用户。
我想检索所有未分配给用户的人。有没有办法使用微风.js 做到这一点?
我找不到任何关于在 Breeze 中使用子查询的信息,但我想应该有某种“in”子句或某种方式来使用/制作子查询