public static HostDomainApplicationCollection Where(WhereDelegate <HostDomainApplicationColumns> where, OrderBy <HostDomainApplicationColumns> orderBy = null, Database database = null) { database = database ?? Db.For <HostDomainApplication>(); var results = new HostDomainApplicationCollection(database, database.GetQuery <HostDomainApplicationColumns, HostDomainApplication>(where, orderBy), true); return(results); }
private static HostDomainApplication OneOrThrow(HostDomainApplicationCollection c) { if (c.Count == 1) { return(c[0]); } else if (c.Count > 1) { throw new MultipleEntriesFoundException(); } return(null); }
/// <summary> /// Return every record in the HostDomainApplication table. /// </summary> /// <param name="database"> /// The database to load from or null /// </param> public static HostDomainApplicationCollection LoadAll(Database database = null) { Database db = database ?? Db.For <HostDomainApplication>(); SqlStringBuilder sql = db.GetSqlStringBuilder(); sql.Select <HostDomainApplication>(); var results = new HostDomainApplicationCollection(db, sql.GetDataTable(db)) { Database = db }; return(results); }
/// <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<HostDomainApplicationColumns>. /// </summary> /// <param name="where"></param> /// <param name="database"></param> public static HostDomainApplicationCollection Where(QiQuery where, Database database = null) { var results = new HostDomainApplicationCollection(database, Select <HostDomainApplicationColumns> .From <HostDomainApplication>().Where(where, database)); return(results); }