Click here to Skip to main content
15,892,643 members
Articles / Desktop Programming / Windows Forms

BookStore

Rate me:
Please Sign up or sign in to vote.
4.61/5 (25 votes)
24 Apr 2012CPOL5 min read 134.6K   17.8K   98  
A project for managing the digital books (HTML, DOCX, ODF, PDF, EPUB, TXT, etc.) of the user using db4o
using System;
using System.Collections.Generic;

using Db4objects.Db4o;


namespace DataAccess
{

    /// <summary>
    /// Native query class.
    /// </summary>
    class NativeQueryAction<GenericType> : IQueryAction<GenericType>
                                where GenericType : class
    {

        private Predicate<GenericType> matchPredicate;
        
        /// <summary>
        /// The depth of the query in the objects' graph.
        /// </summary>
        private int queryDepth;


        /// <summary>
        /// NativeQueryAction constructor.
        /// </summary>
        /// <param name="matchPredicate"></param>
        /// <param name="queryDepth">The depth of the query in the objects' graph</param>
        public NativeQueryAction(Predicate<GenericType> matchPredicate, int queryDepth)
        {
            this.matchPredicate = matchPredicate;
            this.queryDepth = queryDepth;
        }


        /// <summary>
        /// Performs a query for data against the database.
        /// </summary>
        /// <param name="db">The database handle</param>
        /// <returns>The collection of objects retrieved by the query</returns>
        public IList<GenericType> PerformQuery(IObjectContainer db)
        {
            IList<GenericType> resultObjects = new List<GenericType>();

            IList<GenericType> queryResults = db.Query<GenericType>(matchPredicate);

            foreach (GenericType currentObject in queryResults)
            {
                db.Activate(currentObject, queryDepth);
                resultObjects.Add(currentObject);
            }

            return resultObjects;
        }

    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions