|
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.
|
|
Subscribe
|
|
Get It All for $50 USD:
WebPortal, ORMapper,
Source Code, All Updates
|
|
|
Wilson ORMapper Examples
|
|
Business Entity
using System; using System.Collections;
namespace Wilson.ORMapper.Example
{
publicclass Business : Contact
{
privatestring company;
publicstring Company {
get { returnthis.company; }
set { this.company = value; }
}
publicoverridestring ToString() {
returnstring.Format("{0}; {1}", this.Name, this.company);
}
}
}
|
|