public static void deleteAccountBankInfo(AccountBankInfo AccountBankInfoObj)
        {
            AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();

            dbm.delete(AccountBankInfoObj);
        }
        public static AccountBankInfo findOne(string @where, params object[] @params)
        {
            AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();

            return((AccountBankInfo)dbm.findWhere(@where, @params));
        }
        /// <summary>
        /// Convinience method to save a AccountBankInfo Object.
        /// Important note: DO NOT CALL THIS IN A LOOP!
        /// </summary>
        /// <param name="AccountBankInfoObj"></param>
        /// <remarks>
        /// Important note: DO NOT CALL THIS IN A LOOP!
        /// This method simply instantiates a AccountBankInfoDBMapper and calls the save method
        /// </remarks>
        public static void saveAccountBankInfo(params AccountBankInfo[] AccountBankInfoObj)
        {
            AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();

            dbm.saveList(AccountBankInfoObj.ToList());
        }
        public static List <AccountBankInfo> findList(string @where, params object[] @params)
        {
            AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();

            return(dbm.findList(@where, @params));
        }
        public static List <AccountBankInfo> findList(string @where, List <IDataParameter> listOfIParams)
        {
            AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();

            return(dbm.findList(@where, listOfIParams));
        }
 /// <summary>
 /// Convinience method to save a AccountBankInfo Object.
 /// Important note: DO NOT CALL THIS IN A LOOP!
 /// </summary>
 /// <param name="AccountBankInfoObj"></param>
 /// <remarks>
 /// Important note: DO NOT CALL THIS IN A LOOP!  
 /// This method simply instantiates a AccountBankInfoDBMapper and calls the save method
 /// </remarks>
 public static void saveAccountBankInfo(params AccountBankInfo[] AccountBankInfoObj)
 {
     AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();
     dbm.saveList(AccountBankInfoObj.ToList());
 }
    public void TestLoadAndSaveAccountBankInfo()
    {
        ModelContext.beginTrans();
        try {

            CsModelMappers.AccountBankInfoDBMapper pdb = new CsModelMappers.AccountBankInfoDBMapper();

            long count = pdb.RecordCount();

            if (pdb.SelectFromObjectName != pdb.ManagedTableName) {
                long countFromSelectObject = pdb.dbConn.getLngValue("select count(*) from " + pdb.SelectFromObjectName);
                Assert.AreEqual(count, countFromSelectObject,
                    "Count of records in managedTableName {0} and SelectFromObjectName {1} should be equal, as there needs to be exactly 1 to 1 match between records in managed table and selectFromObject.",
                    pdb.ManagedTableName, pdb.SelectFromObjectName);
            }

            if (count == 0) {
                Assert.Inconclusive("No AccountBankInfo in database, table is empty");
            } else {
                /**
                using (DataContext ctx = DBUtils.Current().dbContext()) {

                    var query = ctx.ExecuteQuery<AccountBankInfo>(@"SELECT * FROM " + pdb.SelectFromObjectName ).Skip(1).Take(1);
                    var lst = query.ToList();

                    Assert.AreEqual(lst.Count, 1, "Expected to receive 1 record, got: " + lst.Count);

                }
                todo: fix boolean fields by generating properties of original fields
                **/
                object pid  = ModelContext.CurrentDBUtils.getObjectValue("select top 1 " + pdb.pkFieldName + " from " + pdb.ManagedTableName);

                AccountBankInfo p = pdb.findByKey(pid);
                AccountBankInfo p2 = (AccountBankInfo)p.copy();

                //Test equality and hash codes
                Assert.AreEqual(p.GetHashCode(), p2.GetHashCode());
                Assert.AreEqual(p, p2);

                p.isDirty = true ; // force save
                pdb.save(p);

                // now reload object from database
                p = null;
                p = pdb.findByKey(pid);

                //test fields to be equal before and after save
                Assert.IsTrue(p.PrAccInfoId==p2.PrAccInfoId,"Expected Field AccInfoId to be equal");
                Assert.IsTrue(p.PrContactName==p2.PrContactName,"Expected Field ContactName to be equal");
                Assert.IsTrue(p.PrContactPhone==p2.PrContactPhone,"Expected Field ContactPhone to be equal");
                Assert.IsTrue(p.PrContactFax==p2.PrContactFax,"Expected Field ContactFax to be equal");
                Assert.IsTrue(p.PrAccountID.GetValueOrDefault() ==p2.PrAccountID.GetValueOrDefault(),"Expected Field AccountID to be equal");
                Assert.IsTrue(p.PrSigneeEmployee==p2.PrSigneeEmployee,"Expected Field SigneeEmployee to be equal");
                Assert.IsTrue(p.PrCompanyName==p2.PrCompanyName,"Expected Field CompanyName to be equal");
                Assert.IsTrue(p.PrCompanyBankCode==p2.PrCompanyBankCode,"Expected Field CompanyBankCode to be equal");
                Assert.IsTrue(p.PrBankId.GetValueOrDefault() ==p2.PrBankId.GetValueOrDefault(),"Expected Field BankId to be equal");
                Assert.IsTrue(p.PrCOOPCode==p2.PrCOOPCode,"Expected Field COOPCode to be equal");
                Assert.IsTrue(p.CreateDate.GetValueOrDefault().ToString("MM/dd/yy H:mm:ss zzz") ==p2.CreateDate.GetValueOrDefault().ToString("MM/dd/yy H:mm:ss zzz"),"Expected Field Createdate to be equal");
                Assert.IsFalse(p.UpdateDate.GetValueOrDefault() == p2.UpdateDate.GetValueOrDefault(),"Expected Field Updatedate NOT to be equal");
                //skip update user!
                Assert.IsTrue(p.CreateUser==p2.CreateUser,"Expected Field Createuser to be equal");

                p.isDirty = true; //to force save
                ModelContext.Current.saveModelObject(p);

                p = ModelContext.Current.loadModelObject< AccountBankInfo >(p.Id);
                p.loadObjectHierarchy();

                string json = JsonConvert.SerializeObject(p,Formatting.Indented,
                    new JsonSerializerSettings(){
                            ReferenceLoopHandling = ReferenceLoopHandling.Ignore
                        });
                System.IO.FileInfo jf = new System.IO.FileInfo(".\\AccountBankInfo.json");
                System.IO.File.WriteAllText(jf.FullName,json);

                if (pdb.isPrimaryKeyAutogenerated) {
                    p.isNew = true;
                    p.isDirty = true;

                    try {
                        pdb.save(p);
                    } catch (System.Exception e) {
                        Assert.IsTrue(e.Message.ToUpper().Contains("UNIQUE INDEX")||e.Message.Contains("Violation of UNIQUE KEY constraint"),
                            "Insert statement produced error other than violation of unique key:"+e.Message);

                    }
                }

            }

        } finally {
            ModelContext.rollbackTrans(); // 'Nothing should be saved to the database!
        }
    }
 public static AccountBankInfo findOne(string @where, params object[] @params)
 {
     AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();
     return (AccountBankInfo)dbm.findWhere(@where, @params);
 }
 public static List<AccountBankInfo> findList(string @where, List<IDataParameter> listOfIParams)
 {
     AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();
     return dbm.findList(@where,listOfIParams);
 }
 public static List<AccountBankInfo> findList(string @where, params object[] @params)
 {
     AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();
     return dbm.findList(@where, @params);
 }
 public static void deleteAccountBankInfo(AccountBankInfo AccountBankInfoObj)
 {
     AccountBankInfoDBMapper dbm = new AccountBankInfoDBMapper();
     dbm.delete(AccountBankInfoObj);
 }
Exemple #12
0
    [TestMethod()] public void TestLoadAndSaveAccountBankInfo()
    {
        ModelContext.beginTrans();
        try {
            CsModelMappers.AccountBankInfoDBMapper pdb = new CsModelMappers.AccountBankInfoDBMapper();

            long count = pdb.RecordCount();

            if (pdb.SelectFromObjectName != pdb.ManagedTableName)
            {
                long countFromSelectObject = pdb.dbConn.getLngValue("select count(*) from " + pdb.SelectFromObjectName);
                Assert.AreEqual(count, countFromSelectObject,
                                "Count of records in managedTableName {0} and SelectFromObjectName {1} should be equal, as there needs to be exactly 1 to 1 match between records in managed table and selectFromObject.",
                                pdb.ManagedTableName, pdb.SelectFromObjectName);
            }

            if (count == 0)
            {
                Assert.Inconclusive("No AccountBankInfo in database, table is empty");
            }
            else
            {
                /**
                 * using (DataContext ctx = DBUtils.Current().dbContext()) {
                 *
                 *      var query = ctx.ExecuteQuery<AccountBankInfo>(@"SELECT * FROM " + pdb.SelectFromObjectName ).Skip(1).Take(1);
                 *      var lst = query.ToList();
                 *
                 *      Assert.AreEqual(lst.Count, 1, "Expected to receive 1 record, got: " + lst.Count);
                 *
                 * }
                 * todo: fix boolean fields by generating properties of original fields
                 **/
                object pid = ModelContext.CurrentDBUtils.getObjectValue("select top 1 " + pdb.pkFieldName + " from " + pdb.ManagedTableName);

                AccountBankInfo p  = pdb.findByKey(pid);
                AccountBankInfo p2 = (AccountBankInfo)p.copy();

                //Test equality and hash codes
                Assert.AreEqual(p.GetHashCode(), p2.GetHashCode());
                Assert.AreEqual(p, p2);

                p.isDirty = true;                  // force save
                pdb.save(p);

                // now reload object from database
                p = null;
                p = pdb.findByKey(pid);

                //test fields to be equal before and after save
                Assert.IsTrue(p.PrAccInfoId == p2.PrAccInfoId, "Expected Field AccInfoId to be equal");
                Assert.IsTrue(p.PrContactName == p2.PrContactName, "Expected Field ContactName to be equal");
                Assert.IsTrue(p.PrContactPhone == p2.PrContactPhone, "Expected Field ContactPhone to be equal");
                Assert.IsTrue(p.PrContactFax == p2.PrContactFax, "Expected Field ContactFax to be equal");
                Assert.IsTrue(p.PrAccountID.GetValueOrDefault() == p2.PrAccountID.GetValueOrDefault(), "Expected Field AccountID to be equal");
                Assert.IsTrue(p.PrSigneeEmployee == p2.PrSigneeEmployee, "Expected Field SigneeEmployee to be equal");
                Assert.IsTrue(p.PrCompanyName == p2.PrCompanyName, "Expected Field CompanyName to be equal");
                Assert.IsTrue(p.PrCompanyBankCode == p2.PrCompanyBankCode, "Expected Field CompanyBankCode to be equal");
                Assert.IsTrue(p.PrBankId.GetValueOrDefault() == p2.PrBankId.GetValueOrDefault(), "Expected Field BankId to be equal");
                Assert.IsTrue(p.PrCOOPCode == p2.PrCOOPCode, "Expected Field COOPCode to be equal");
                Assert.IsTrue(p.CreateDate.GetValueOrDefault().ToString("MM/dd/yy H:mm:ss zzz") == p2.CreateDate.GetValueOrDefault().ToString("MM/dd/yy H:mm:ss zzz"), "Expected Field Createdate to be equal");
                Assert.IsFalse(p.UpdateDate.GetValueOrDefault() == p2.UpdateDate.GetValueOrDefault(), "Expected Field Updatedate NOT to be equal");
                //skip update user!
                Assert.IsTrue(p.CreateUser == p2.CreateUser, "Expected Field Createuser to be equal");



                p.isDirty = true;                 //to force save
                ModelContext.Current.saveModelObject(p);

                p = ModelContext.Current.loadModelObject <AccountBankInfo>(p.Id);
                p.loadObjectHierarchy();

                string json = JsonConvert.SerializeObject(p, Formatting.Indented,
                                                          new JsonSerializerSettings()
                {
                    ReferenceLoopHandling = ReferenceLoopHandling.Ignore
                });
                System.IO.FileInfo jf = new System.IO.FileInfo(".\\AccountBankInfo.json");
                System.IO.File.WriteAllText(jf.FullName, json);

                if (pdb.isPrimaryKeyAutogenerated)
                {
                    p.isNew   = true;
                    p.isDirty = true;

                    try {
                        pdb.save(p);
                    } catch (System.Exception e) {
                        Assert.IsTrue(e.Message.ToUpper().Contains("UNIQUE INDEX") || e.Message.Contains("Violation of UNIQUE KEY constraint"),
                                      "Insert statement produced error other than violation of unique key:" + e.Message);
                    }
                }
            }
        } finally {
            ModelContext.rollbackTrans(); // 'Nothing should be saved to the database!
        }
    }