Click here to Skip to main content
15,894,343 members
Articles / Database Development / SQL Server

TDD using SqlCE and NHibernate

Rate me:
Please Sign up or sign in to vote.
4.42/5 (7 votes)
10 Apr 2007CPOL4 min read 55.8K   410   28  
This article walks through setting up a SqlCE test bench when using TDD
using System.Collections.Generic;
using NHibernate;
using NHibernate.Expression;
using Samples.SqlCe.DomainObjects;

namespace Samples.SqlCe.Repositories {
    public class UserRepository {
        private ISession _session;
        public ISession session {
            get { return _session; }
            set { _session = value; }
        }

        public bool CheckUsernameIsAvailable(string username) {
            IList<User> results = session.CreateCriteria(typeof(User))
                .Add(Expression.Eq("Username", username))
                .List<User>();

            return results.Count >= 1;
        }
    }
}

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)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions