i've inherited a project that is using subsonic. I wish to extend the OrderItem class with a new property "ProductType".
I am able to add the following. But as this a sub directory of /generated/ i'm obviously feeling like i'm missing a trick here. Do i need some kind of BAT file.
[XmlAttribute("ProductType")]
public string ProductType
{
get { return GetColumnValue<string>(Columns.ProductType); }
set { SetColumnValue(Columns.ProductType, value); }
}