Beispiel #1
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;DomainColumns&gt;.
        /// </summary>
        /// <param name="where"></param>
        /// <param name="database"></param>
        public static DomainCollection Where(QiQuery where, Database database = null)
        {
            var results = new DomainCollection(database, Select <DomainColumns> .From <Domain>().Where(where, database));

            return(results);
        }