//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.3053 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace ActiveRecordScaffolding.Data { [Castle.ActiveRecord.ActiveRecordAttribute("[Categories]")] public partial class Categories { private int _categoryID; private string _categoryName; private string _description; private byte[] _picture; [Castle.ActiveRecord.PrimaryKeyAttribute(Castle.ActiveRecord.PrimaryKeyType.Identity, "[Category ID]")] public virtual int Id { get { return this._categoryID; } set { this._categoryID = value; } } [Castle.ActiveRecord.PropertyAttribute("[Category Name]")] public virtual string CategoryName { get { return this._categoryName; } set { this._categoryName = value; } } [Castle.ActiveRecord.PropertyAttribute("[Description]")] public virtual string Description { get { return this._description; } set { this._description = value; } } [Castle.ActiveRecord.PropertyAttribute("[Picture]")] public virtual byte[] Picture { get { return this._picture; } set { this._picture = value; } } } }