我构建了一个这样的流畅界面:
criador.Include("Idade", 21).Include("Idade", 21);
我可以做这样的事情:
criador.Include({"Idade", 21},{"Idade", 21});
我尝试使用 params 关键字的用户方法:
public myType Include(params[] KeyValuePair<string,object> objs){
//Some code
}
但我需要这样做:
criador.Include(new KeyValuePair<string, object>{"Idade", 21}, new KeyValuePair<string, object>{"Idade", 21});
关键是我不想在方法上写没有“新”关键字