Example #1
0
        private bool LoadByPrimaryKeyDynamic(System.String registrationNo, System.String patientID)
        {
            esMpiSyncKunjunganQuery query = this.GetDynamicQuery();

            query.Where(query.RegistrationNo == registrationNo, query.PatientID == patientID);
            return(query.Load());
        }
Example #2
0
 protected void InitQuery(esMpiSyncKunjunganQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     query.es2.Connection = ((IEntity)this).Connection;
 }