void Init() { TestMode = this._db.DataProvider.ConnectionString.Equals("test", StringComparison.InvariantCultureIgnoreCase); _dirtyColumns = new List <IColumn>(); if (TestMode) { PLAN00.SetTestRepo(); _repo = _testRepo; } else { _repo = new SubSonicRepository <PLAN00>(_db); } tbl = _repo.GetTable(); SetIsNew(true); OnCreated(); }
internal static IRepository <PLAN00> GetRepo(string connectionString, string providerName) { Solution.DataAccess.DataModel.SolutionDataBase_standardDB db; if (String.IsNullOrEmpty(connectionString)) { db = new Solution.DataAccess.DataModel.SolutionDataBase_standardDB(); } else { db = new Solution.DataAccess.DataModel.SolutionDataBase_standardDB(connectionString, providerName); } IRepository <PLAN00> _repo; if (db.TestMode) { PLAN00.SetTestRepo(); _repo = _testRepo; } else { _repo = new SubSonicRepository <PLAN00>(db); } return(_repo); }