Example #1
0
 public void SetUp()
 {
     if (AllorsSession == null)
     {
         AllorsSession = AllorsConfiguration.CreateDisconnectedPopulation().CreateSession();
     }
 }
Example #2
0
        public override void Init()
        {
            this.repository = AllorsConfiguration.CreateRepository("NpgsqlLongId");
            this.repository.Init();

            this.population2 = AllorsConfiguration.CreateRepository("NpgsqlLongId2");
            this.population2.Init();
        }
Example #3
0
        public override void Init()
        {
            this.repository = AllorsConfiguration.CreateRepository("MySqlClientIntegerId");
            this.repository.Init();

            this.population2 = AllorsConfiguration.CreateRepository("MySqlClientIntegerId2");
            this.population2.Init();
        }
Example #4
0
        public override void Init()
        {
            this.repository = AllorsConfiguration.CreateDatabase("SqlClientLongId");
            this.repository.Init();

            this.population2 = AllorsConfiguration.CreateDatabase("SqlClientLongId2");
            this.population2.Init();
        }
Example #5
0
 public override void Init()
 {
     this.repository  = AllorsConfiguration.CreateDatabase("MemoryLongId");
     this.population2 = AllorsConfiguration.CreateDatabase("MemoryLongId");
 }
Example #6
0
 public override IDatabase CreateMemoryPopulation()
 {
     return(AllorsConfiguration.CreateDatabase("MemoryLongId"));
 }