views:

369

answers:

1

would like to set this convention up globally if possible.

+6  A: 

You need a convention, of which there are some shortcuts for the common scenarios. Specifically, there's a DefaultAccess shortcut, with a CamelCaseField(prefix) method.

.Conventions.Add(
  DefaultAccess.CamelCaseField(CamelCasePrefix.Underscore)
);
James Gregory
thanks! (15 char)
Jon Erickson