orderBindingSource.DataSource = _orderEntity;
orderLineBindingSource.DataSource = _orderEntity.OrderLines;
xtraGridOrderLine.DataSource = orderLineBindingSource;
次のタスクを実行する方法は?
1 /ユーザーがNewRowで入力を開始したら、エンティティを_orderEntity.OrderLinesに追加する必要があります。
2 /ユーザーがNewRowをキャンセルする場合、挿入されたエンティティは_orderEntity.OrderLinesから削除する必要があります。
ありがとう。