Gets or sets the update target column name of the data source.
[Visual Basic]
Public Property EditColsName As String()
[C#]
public string[] EditColsName {get; set;}
Property Value
String array.
Example
How to set the update target column name of the data source.
Dim cols As String() = {"xxx_id", "xxx_name"}
dbExData.EditColsName = cols
string[] cols = new string[] { "xxx_id", "xxx_name" };
dbExData.EditColsName = cols;
See Also
AwDbExData Class | Asterworld.Data Namespace