I'm trying to split feature, by point, into 2 new features.
var pFeatureEdit = lineToSplit.Feature as IFeatureEdit;
var set = pFeatureEdit.Split(point);
When this feature has configured relation, I got exception.
Got next COM error: The field is not nullable [FIELDID] Where FIELDID - not nullable foreign key in database
Anybody know how to solve this issue?
UPD. When I split this feature using standard Split Tool in ArcMap - it splits successfully. This uses another method to split features?
