コード例 #1
0
ファイル: Entity.cs プロジェクト: lessonzhang/mysourcecode
        public bool FillSelf(SQLCondition Condition)
        {
            EntityStruct es = EntityStructManager.GetEntityStruct(this.GetType());

            return(es.DoFillSelf(this, Condition));
        }
コード例 #2
0
ファイル: Entity.cs プロジェクト: lessonzhang/mysourcecode
        public bool FillSelf <T>(T ID, params string[] FieldNames)
        {
            EntityStruct es = EntityStructManager.GetEntityStruct(this.GetType());

            return(es.DoFillSelf(this, ID, FieldNames));
        }