I was wondering if it is even possible. I am using the Visio Drawing contorl + the MODELEng lib. I have something like:
IVMEEntity entity = GetEntity();
IVMEAttribute attribNew = entity.CreateAttribute();
attribNew.PhysicalName = attrib.AttributeName;
attribNew.ConceptualName = attrib.AttributeName;
attribNew.AllowNulls = !attrib.AttributeNotNull;
And it works fine to add attrbiutes (think of columns) to the current entity. It can't add a column as a primary key. As far as I know I should use
attribNew.AttributeAnnotations
in some way but I can't really understand how.
