To avoid mistake typing when I need the field name in
string format it should be usefull a property or a
readonly variable that returns the string name of the
fileds inside Collections.
For example in a combobox:
CustomersCollection customers =
dm.GetTipiMaterialeCollection();
Combobox1.DataSource = cutomers;
Combobox1.DisplayMember =
cutomers.FieldNameCustomerName;
Combobox.ValueMember =
customers.FieldNameCustomerID;