I have an activity binding list, and each action has a BuyOrders binding list
bindingListActivty.Select(k => k._dataGridViewId == 1);
If I understand correctly, I can select an action, but I canβt access any method inside the action. How to access the method without creating a new instance of the list of bindings?
I would have worked, but not
bindingListActivty.Select(k => k._dataGridViewId == 1).addBuyOrders(new BuyOrders());
source share