Login Skip Navigation LinksWilsonORMapper > Category Entity Search
Demo Version Demo Version
Download and try for yourself a fully working demo version, including sample apps and documentation.  The only limitation is that the demo version only works inside the debugger.

PayPal Subscribe
Get It All for $50 USD:
WebPortal, ORMapper,
Source Code, All Updates
PayPal

Wilson ORMapper Examples Wilson ORMapper Examples

Category Entity

using System;
using System.Collections;

namespace Wilson.ORMapper.Example
{
  publicclass Category
  {
    privatestring id; // User-Entered Char Key Field
    privatestring description;
    private IList contacts; // Many-To-Many Relationship

    publicstring Id {
      get { returnthis.id; }
      set { this.id = value; }
    }

    publicstring Description {
      get { returnthis.description; }
      set { this.description = value; }
    }

    public IList Contacts {
      get { returnthis.contacts; }
    }
  
    publicoverridestring ToString() {
      returnthis.description;
    }
  }
}