Exemplo n.º 1
0
        public static ServiceTypeIdentifierCollection Where(WhereDelegate <ServiceTypeIdentifierColumns> where, OrderBy <ServiceTypeIdentifierColumns> orderBy = null, Database database = null)
        {
            database = database ?? Db.For <ServiceTypeIdentifier>();
            var results = new ServiceTypeIdentifierCollection(database, database.GetQuery <ServiceTypeIdentifierColumns, ServiceTypeIdentifier>(where, orderBy), true);

            return(results);
        }
Exemplo n.º 2
0
        private static ServiceTypeIdentifier OneOrThrow(ServiceTypeIdentifierCollection c)
        {
            if (c.Count == 1)
            {
                return(c[0]);
            }
            else if (c.Count > 1)
            {
                throw new MultipleEntriesFoundException();
            }

            return(null);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Return every record in the ServiceTypeIdentifier table.
        /// </summary>
        /// <param name="database">
        /// The database to load from or null
        /// </param>
        public static ServiceTypeIdentifierCollection LoadAll(Database database = null)
        {
            Database         db  = database ?? Db.For <ServiceTypeIdentifier>();
            SqlStringBuilder sql = db.GetSqlStringBuilder();

            sql.Select <ServiceTypeIdentifier>();
            var results = new ServiceTypeIdentifierCollection(db, sql.GetDataTable(db))
            {
                Database = db
            };

            return(results);
        }
Exemplo n.º 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;ServiceTypeIdentifierColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static ServiceTypeIdentifierCollection Where(QiQuery where, Database database = null)
        {
            var results = new ServiceTypeIdentifierCollection(database, Select <ServiceTypeIdentifierColumns> .From <ServiceTypeIdentifier>().Where(where, database));

            return(results);
        }