Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What type of object is entity here? – JMK Jan 13 at 15:15
Sorry, it is IVMEEntity, I updated my question, thanks! Any idea if it is even possible? – Pavel Donchev Jan 13 at 15:31
@JMK, have you been in such a situation? – Pavel Donchev Feb 5 at 11:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.