コード例 #1
0
        public static AssemblyRevisionCollection Where(WhereDelegate <AssemblyRevisionColumns> where, OrderBy <AssemblyRevisionColumns> orderBy = null, Database database = null)
        {
            database = database ?? Db.For <AssemblyRevision>();
            var results = new AssemblyRevisionCollection(database, database.GetQuery <AssemblyRevisionColumns, AssemblyRevision>(where, orderBy), true);

            return(results);
        }
コード例 #2
0
        private static AssemblyRevision OneOrThrow(AssemblyRevisionCollection c)
        {
            if (c.Count == 1)
            {
                return(c[0]);
            }
            else if (c.Count > 1)
            {
                throw new MultipleEntriesFoundException();
            }

            return(null);
        }
コード例 #3
0
        /// <summary>
        /// Return every record in the AssemblyRevision table.
        /// </summary>
        /// <param name="database">
        /// The database to load from or null
        /// </param>
        public static AssemblyRevisionCollection LoadAll(Database database = null)
        {
            Database         db  = database ?? Db.For <AssemblyRevision>();
            SqlStringBuilder sql = db.GetSqlStringBuilder();

            sql.Select <AssemblyRevision>();
            var results = new AssemblyRevisionCollection(db, sql.GetDataTable(db))
            {
                Database = db
            };

            return(results);
        }
コード例 #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;AssemblyRevisionColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static AssemblyRevisionCollection Where(QiQuery where, Database database = null)
        {
            var results = new AssemblyRevisionCollection(database, Select <AssemblyRevisionColumns> .From <AssemblyRevision>().Where(where, database));

            return(results);
        }