How can I update a column value in a binding source with code?
I am trying for something similar to this:
CustomersBindingSource.AddNew();
CustomersBindingSource.Current["CustomerID"] = Guid.NewGuid();
This code currently errors stating: "Cannot apply indexing with [] to an expression of type 'object'".
Any help re-writing this is greatly appreciated!