In the 2.5 version of Pro does CreateRow have some slightly different behavior? In my code that worked with previous versions, CreateRow(rowBuffer) i don't recall triggered the RowChangedEventArgs. It makes sense that it does, but in my old code when creating the row from the row buffer this was never triggered. Should I want to skip the RowChangeEvent, I think I will need to again track something on that ROW, however I can't get an ObjectID from the Row buffer? Do I have to use the Handle?
using (Row NewFieldRow = layerTable.CreateRow(rowBuffer))
{
NewFieldGlobalID = NewFieldRow.GetRowTableValue("GlobalId");
NewCurrentFieldObjectID = NewFieldRow.GetObjectID();
}