I have edited a code of a call. The call
countryTextBox. DataBindings. Add ("Text", order, "Customer.Country")
causes exception.
The call
countryTextBox. DataBindings. Add ("Text", order.Customer, "Country")
works.
The form of a call from MSDN 'You can also use a period-delimited navigation path when you bind to an object whose properties return references to other objects (such as a class with properties that return other class objects). For example, the following navigation paths all describe valid data fields:'
"Size.Height"
"Suppliers.CompanyName"
"Regions.regionsToCustomers.CustomerFirstName"
"Regions.regionsToCustomers.customersToOrders.ordersToDetails.Quantity"
it is not efficient?