示例#1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            AnnotationPlotQuery query = new AnnotationPlotQuery();

            query.Where(query.Id == id);
            return(this.Load(query));
        }
示例#2
0
        protected void InitQuery(AnnotationPlotQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
示例#3
0
 public bool Load(AnnotationPlotQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }