I built a fluent interface like this:
criador.Include("Idade", 21).Include("Idade", 21);
Can I do something like this:
criador.Include({"Idade", 21},{"Idade", 21});
I tryed to user method with params keyword:
public myType Include(params[] KeyValuePair<string,object> objs){
//Some code
}
But I need to do this:
criador.Include(new KeyValuePair<string, object>{"Idade", 21}, new KeyValuePair<string, object>{"Idade", 21});
The point is that i dont want to write no "new" keyword on the methods
You could use an implicit conversion:
// Tests