Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Enum Generation

Watch this video for a quick tutorial on Enum Generation!

Widget Connector
width500
urlhttp://www.youtube.com/watch?v=O9okRqA6PN8&feature=player_embedded
height310

...

PLINQO enum generation easily turned priority table into an enum.

...

Code Block
languagecsharp
[DataContract]
public enum Priority : int
{
    [EnumMember]
    High = 1,
    [EnumMember]
    Normal = 2,
    [EnumMember]
    Low = 3,
}

Next: Many to Many Relationships