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

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

            sql.Select <ServiceDescriptor>();
            Database db      = database ?? Db.For <ServiceDescriptor>();
            var      results = new ServiceDescriptorCollection(sql.GetDataTable(db));

            results.Database = db;
            return(results);
        }
Exemplo n.º 3
0
		/// <summary>
		/// Return every record in the ServiceDescriptor table.
		/// </summary>
		/// <param name="database">
		/// The database to load from or null
		/// </param>
		public static ServiceDescriptorCollection LoadAll(Database database = null)
		{
			Database db = database ?? Db.For<ServiceDescriptor>();
			SqlStringBuilder sql = db.GetSqlStringBuilder();
			sql.Select<ServiceDescriptor>();
			var results = new ServiceDescriptorCollection(db, sql.GetDataTable(db))
			{
				Database = db
			};
			return results;
		}
Exemplo n.º 4
0
        private static ServiceDescriptor OneOrThrow(ServiceDescriptorCollection c)
        {
            if (c.Count == 1)
            {
                return(c[0]);
            }
            else if (c.Count > 1)
            {
                throw new MultipleEntriesFoundException();
            }

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

            return(results);
        }