Пример #1
0
        public static void deleteProject(Project ProjectObj)
        {
            ProjectDBMapper dbm = new ProjectDBMapper();

            dbm.delete(ProjectObj);
        }
Пример #2
0
        public static Project findOne(string @where, params object[] @params)
        {
            ProjectDBMapper dbm = new ProjectDBMapper();

            return((Project)dbm.findWhere(@where, @params));
        }
Пример #3
0
        /// <summary>
        /// Convinience method to save a Project Object.
        /// Important note: DO NOT CALL THIS IN A LOOP!
        /// </summary>
        /// <param name="ProjectObj"></param>
        /// <remarks>
        /// Important note: DO NOT CALL THIS IN A LOOP!
        /// This method simply instantiates a ProjectDBMapper and calls the save method
        /// </remarks>
        public static void saveProject(params Project[] ProjectObj)
        {
            ProjectDBMapper dbm = new ProjectDBMapper();

            dbm.saveList(ProjectObj.ToList());
        }
Пример #4
0
        public static List <Project> findList(string @where, params object[] @params)
        {
            ProjectDBMapper dbm = new ProjectDBMapper();

            return(dbm.findList(@where, @params));
        }
Пример #5
0
        public static List <Project> findList(string @where, List <IDataParameter> listOfIParams)
        {
            ProjectDBMapper dbm = new ProjectDBMapper();

            return(dbm.findList(@where, listOfIParams));
        }
Пример #6
0
 public static List<Project> findList(string @where, params object[] @params)
 {
     ProjectDBMapper dbm = new ProjectDBMapper();
     return dbm.findList(@where, @params);
 }
Пример #7
0
 public static List<Project> findList(string @where, List<IDataParameter> listOfIParams)
 {
     ProjectDBMapper dbm = new ProjectDBMapper();
     return dbm.findList(@where,listOfIParams);
 }
Пример #8
0
 public static void deleteProject(Project ProjectObj)
 {
     ProjectDBMapper dbm = new ProjectDBMapper();
     dbm.delete(ProjectObj);
 }
Пример #9
0
 /// <summary>
 /// Convinience method to save a Project Object.
 /// Important note: DO NOT CALL THIS IN A LOOP!
 /// </summary>
 /// <param name="ProjectObj"></param>
 /// <remarks>
 /// Important note: DO NOT CALL THIS IN A LOOP!  
 /// This method simply instantiates a ProjectDBMapper and calls the save method
 /// </remarks>
 public static void saveProject(params Project[] ProjectObj)
 {
     ProjectDBMapper dbm = new ProjectDBMapper();
     dbm.saveList(ProjectObj.ToList());
 }
Пример #10
0
 public static Project findOne(string @where, params object[] @params)
 {
     ProjectDBMapper dbm = new ProjectDBMapper();
     return (Project)dbm.findWhere(@where, @params);
 }
Пример #11
0
    public void TestLoadAndSaveProject()
    {
        ModelContext.beginTrans();
        try {

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

            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 Project in database, table is empty");
            } else {
                /**
                using (DataContext ctx = DBUtils.Current().dbContext()) {

                    var query = ctx.ExecuteQuery<Project>(@"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);

                Project p = pdb.findByKey(pid);
                Project p2 = (Project)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.PrProjectId==p2.PrProjectId,"Expected Field ProjectId to be equal");
                Assert.IsTrue(p.PrProjectName==p2.PrProjectName,"Expected Field ProjectName to be equal");
                Assert.IsTrue(p.PrIsActive==p2.PrIsActive,"Expected Field IsActive to be equal");
                Assert.IsTrue(p.PrProjectTypeId.GetValueOrDefault() ==p2.PrProjectTypeId.GetValueOrDefault(),"Expected Field ProjectTypeId to be equal");

        Assert.IsTrue(p.PrEmployeeProjects != null);

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

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

                string json = JsonConvert.SerializeObject(p,Formatting.Indented,
                    new JsonSerializerSettings(){
                            ReferenceLoopHandling = ReferenceLoopHandling.Ignore
                        });
                System.IO.FileInfo jf = new System.IO.FileInfo(".\\Project.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!
        }
    }
Пример #12
0
    [TestMethod()] public void TestLoadAndSaveProject()
    {
        ModelContext.beginTrans();
        try {
            CsModelMappers.ProjectDBMapper pdb = new CsModelMappers.ProjectDBMapper();

            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 Project in database, table is empty");
            }
            else
            {
                /**
                 * using (DataContext ctx = DBUtils.Current().dbContext()) {
                 *
                 *      var query = ctx.ExecuteQuery<Project>(@"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);

                Project p  = pdb.findByKey(pid);
                Project p2 = (Project)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.PrProjectId == p2.PrProjectId, "Expected Field ProjectId to be equal");
                Assert.IsTrue(p.PrProjectName == p2.PrProjectName, "Expected Field ProjectName to be equal");
                Assert.IsTrue(p.PrIsActive == p2.PrIsActive, "Expected Field IsActive to be equal");
                Assert.IsTrue(p.PrProjectTypeId.GetValueOrDefault() == p2.PrProjectTypeId.GetValueOrDefault(), "Expected Field ProjectTypeId to be equal");

                Assert.IsTrue(p.PrEmployeeProjects != null);

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

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

                string json = JsonConvert.SerializeObject(p, Formatting.Indented,
                                                          new JsonSerializerSettings()
                {
                    ReferenceLoopHandling = ReferenceLoopHandling.Ignore
                });
                System.IO.FileInfo jf = new System.IO.FileInfo(".\\Project.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!
        }
    }