Esempio n. 1
0
        public static ApplicationMachineCollection Where(WhereDelegate <ApplicationMachineColumns> where, OrderBy <ApplicationMachineColumns> orderBy = null, Database database = null)
        {
            database = database ?? Db.For <ApplicationMachine>();
            var results = new ApplicationMachineCollection(database, database.GetQuery <ApplicationMachineColumns, ApplicationMachine>(where, orderBy), true);

            return(results);
        }
Esempio n. 2
0
        /// <summary>
        /// Return every record in the ApplicationMachine table.
        /// </summary>
        /// <param name="database">
        /// The database to load from or null
        /// </param>
        public static ApplicationMachineCollection LoadAll(Database database = null)
        {
            SqlStringBuilder sql = new SqlStringBuilder();

            sql.Select <ApplicationMachine>();
            Database db      = database ?? Db.For <ApplicationMachine>();
            var      results = new ApplicationMachineCollection(db, sql.GetDataTable(db));

            results.Database = db;
            return(results);
        }
Esempio n. 3
0
        private static ApplicationMachine OneOrThrow(ApplicationMachineCollection c)
        {
            if (c.Count == 1)
            {
                return(c[0]);
            }
            else if (c.Count > 1)
            {
                throw new MultipleEntriesFoundException();
            }

            return(null);
        }
Esempio n. 4
0
        /// <summary>
        /// This method is intended to respond to client side Qi queries.
        /// Use of this method from .Net should be avoided in favor of
        /// one of the methods that take a delegate of type
        /// WhereDelegate&lt;ApplicationMachineColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static ApplicationMachineCollection Where(QiQuery where, Database database = null)
        {
            var results = new ApplicationMachineCollection(database, Select <ApplicationMachineColumns> .From <ApplicationMachine>().Where(where, database));

            return(results);
        }