Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If you a have Person Property on Address defined like

public class Address
{
   public int AdressId {get; set;}
   public Person AddressesPerson {get;set;}
   public string FullAddress {get; set;}
}

What is the proper conventions, if any, for naming a property of another type?

share|improve this question

4 Answers

up vote 1 down vote accepted

I don't think there's a hard and fast rule, but generally I like to stick to the following guidelines as much as possible:

  • Don't repeat the name of the class. This one can be surprisingly hard to work around, but it's usually solved by thinking hard about the second rule:
  • Think about the properties role in the class, and not just what it is. In your example, Owner might be an appropriate property name, since a Person owns a particular Address.
share|improve this answer

Name the property according to its semantic meaning. Frankly it's quite odd to have a Person property on an address - it would normally be the other way round. What's the meaning of the person here? What's the association between the address and the person? You might have Owner or Resident, for example - but in other cases that wouldn't be appropriate.

share|improve this answer
There is multiple adresses being stored as an address history – Shane Aug 16 '10 at 19:19
@Shane: Then I'd probably still have a property on Person defined as Dictionary<DateTime, Address> HistoricalAddresses or some such. I've never heard of an Address having a person... – AllenG Aug 16 '10 at 19:22
@AlllenG The Person does have a IList of Addresses on it, So would you not bother mapping it to a Person, Just Leave it as PersonId fulfil NHibernate requirements? – Shane Aug 16 '10 at 19:26

I would name the property from the relationship between the two types, e.g. Resident, Owner etc.

share|improve this answer

Pick one and stick with it.

In your specific case, I wonder why a person is subordinate to an Address, instead of the other way around, but basically just pick the one you want to use and keep using it. As long as it's not something completely unreadable or against some kind of Team coding guidelines, you're probably good.

share|improve this answer
There is multiple adresses being stored as an address history – Shane Aug 16 '10 at 19:20

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.