Correct the following flawed behavior :
DataTable does not reflect changes on its DataShape.
For a given DataTable
my.CustomDataTable
using a given DataShape
my.CustomDataShape
This DataShape has a field of type infotable, using another DataShape :
InfoTable property1 (my.CustomSubDataShape)
This data shape has a single field
String subProperty1
In summary, my entities are :
DataTable my.CustomDataTable (my.CustomDataShape)
DataShape my.CustomDataShape
InfoTable property1 (my.CustomSubDataShape)
DataShape my.CustomSubDataShape
String subProperty1
Now I want to modify the second DataShape. For example I add a new field. My entites become :
DataTable my.CustomDataTable (my.CustomDataShape)
DataShape my.CustomDataShape
InfoTable property1 (my.CustomSubDataShape)
DataShape my.CustomSubDataShape
String subProperty1
String subProperty2
Existing entries in the DataTable are not updated with the updated DataShape.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.