示例#1
0
        public static ProcessRuntimeDescriptorCollection Where(WhereDelegate <ProcessRuntimeDescriptorColumns> where, OrderBy <ProcessRuntimeDescriptorColumns> orderBy = null, Database database = null)
        {
            database = database ?? Db.For <ProcessRuntimeDescriptor>();
            var results = new ProcessRuntimeDescriptorCollection(database, database.GetQuery <ProcessRuntimeDescriptorColumns, ProcessRuntimeDescriptor>(where, orderBy), true);

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

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

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

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

            return(results);
        }