从下面的代码中,我可以使用谓词搜索并找到 ID 大于 4 的所有商家,使用类似的方法我将如何返回 Voucher 的 VoucherTypeID 为 3 的所有商家及其凭证让说。
提前致谢
class Program
{
static void Main(string[] args)
{
List<Merchant> merchants = new List<Merchant>(10);
for (int i = 0; i < 10; i++)
{
List<Voucher> vcs = new List<Voucher>();
for (int j = 0; j < 3; j++)
{
vcs.Add(new Voucher(j,"Voucher" + j.ToString(),i, j, "Type_" +j.ToString()));
}
merchants.Add(new Merchant(i, i.ToString() + "_Merchant",vcs));
}
//This will return all the merchant's where the ID is greater than 4
Predicate<Merchant> filterByID;
MerchantFilter filter = new MerchantFilter(4);
filterByID = new Predicate<Merchant>(filter.FilterByMerchantGT4);
List<Merchant> filteredMerchants = merchants.FindAll(filterByID);
}
public class MerchantFilter
{
private int idValue;
public bool FilterByMerchantGT4(Merchant merch)
{
return merch.MerchantID > idValue;
}
public MerchantFilter(int value)
{
idValue = value;
}
}
public class Merchant
{
public int MerchantID { get; set; }
public string MerchantName { get; set; }
public List<Voucher> MerchantVouchers { get; set; }
public Merchant(int id, string Name, List<Voucher> vouchers)
{
MerchantID = id;
MerchantName = Name;
MerchantVouchers = vouchers;
}
}
public class Voucher
{
public int VoucherID { get; set; }
public string VoucherName { get; set; }
public int MerchantVoucherID { get; set; }
public int VoucherTypeID { get; set; }
public string VoucherTypeName { get; set; }
public Voucher(int ID, string Name, int merchantID, int typeID, string TypeName)
{
VoucherID = ID;
VoucherName = Name;
MerchantVoucherID = merchantID;
VoucherTypeID = typeID;
VoucherTypeName = TypeName;
}
}