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

            return(results);
        }
示例#2
0
        private static HostDomain OneOrThrow(HostDomainCollection 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 HostDomain table.
        /// </summary>
        /// <param name="database">
        /// The database to load from or null
        /// </param>
        public static HostDomainCollection LoadAll(Database database = null)
        {
            Database         db  = database ?? Db.For <HostDomain>();
            SqlStringBuilder sql = db.GetSqlStringBuilder();

            sql.Select <HostDomain>();
            var results = new HostDomainCollection(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;HostDomainColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static HostDomainCollection Where(QiQuery where, Database database = null)
        {
            var results = new HostDomainCollection(database, Select <HostDomainColumns> .From <HostDomain>().Where(where, database));

            return(results);
        }