示例#1
0
        private bool LoadByPrimaryKeyDynamic(System.String guarantorID)
        {
            esMpiPayplanMappingQuery query = this.GetDynamicQuery();

            query.Where(query.GuarantorID == guarantorID);
            return(query.Load());
        }
示例#2
0
 protected void InitQuery(esMpiPayplanMappingQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     query.es2.Connection = ((IEntityCollection)this).Connection;
 }