Example #1
0
        public static AssemblyDescriptorProcessRuntimeDescriptorCollection Where(WhereDelegate <AssemblyDescriptorProcessRuntimeDescriptorColumns> where, OrderBy <AssemblyDescriptorProcessRuntimeDescriptorColumns> orderBy = null, Database database = null)
        {
            database = database ?? Db.For <AssemblyDescriptorProcessRuntimeDescriptor>();
            var results = new AssemblyDescriptorProcessRuntimeDescriptorCollection(database, database.GetQuery <AssemblyDescriptorProcessRuntimeDescriptorColumns, AssemblyDescriptorProcessRuntimeDescriptor>(where, orderBy), true);

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

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

            results.Database = db;
            return(results);
        }
Example #3
0
        private static AssemblyDescriptorProcessRuntimeDescriptor OneOrThrow(AssemblyDescriptorProcessRuntimeDescriptorCollection c)
        {
            if (c.Count == 1)
            {
                return(c[0]);
            }
            else if (c.Count > 1)
            {
                throw new MultipleEntriesFoundException();
            }

            return(null);
        }
Example #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;AssemblyDescriptorProcessRuntimeDescriptorColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static AssemblyDescriptorProcessRuntimeDescriptorCollection Where(QiQuery where, Database database = null)
        {
            var results = new AssemblyDescriptorProcessRuntimeDescriptorCollection(database, Select <AssemblyDescriptorProcessRuntimeDescriptorColumns> .From <AssemblyDescriptorProcessRuntimeDescriptor>().Where(where, database));

            return(results);
        }