Exemple #1
0
        public void SetUp()
        {
            dbPath     = Temp();
            connection = new SqlCeConnection(CreateDB(dbPath));
            db         = new DB(connection);

            Posts  = db["Posts"];
            People = db["People"];

            connection.ExecuteBatch(FIXTURES);
        }