我正在尝试编写一个lambda查询来检索所有可供出租或很快可用的产品(其中结束日期在10天内)。该查询将返回以前从未租用过的所有产品,或者已租用但即将推出的产品。
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public ICollection<Rent> Rents { get; set; }
}
public class Rent
{
public int Id { get; set; }