I would like to generate an auto-property. At the moment I can add a property to the CodeClass by using the following:
codeproperty = entityClass.AddProperty(columnName, columnName, c.ColumnType);
but this produces code like this:
int AddressID
{
get
{
return default(int);
}
set
{
}
}
..and I want it to look like this:
int AddressID {get; set;}