示例#1
0
		//public void ClearFromBobCache()
		//{
		//    //not needed - handled by triggers.
		//    if (Table.HasSinglePrimaryKey)
		//        Cache.Static.Cache.Add(GetCacheKey(Table.TableName, this[Table.SinglePrimaryKey].ToString()), null);
		//}


		public Bob(TableDef tableDef)
		{
			this.Table = tableDef;
		}
示例#2
0
		public Bob(TableDef tableDef, BobSet bobSet)
			: this(tableDef)
		{
			this.BobSet = bobSet;


		}
示例#3
0
		public TableElement(TableDef Table)
		{
			Init(Table);
			this.TableEnum = Table.TableEnum;
		}