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