public static void Setup(int testItems) { SetTestRepo(); for (int i = 0; i < testItems; i++) { DIVISION item = new DIVISION(); _testRepo._items.Add(item); } }
public override bool Equals(object obj) { if (obj.GetType() == typeof(DIVISION)) { DIVISION compare = (DIVISION)obj; return(compare.KeyValue() == this.KeyValue()); } else { return(base.Equals(obj)); } }
public static DIVISION SingleOrDefault(Expression <Func <DIVISION, bool> > expression, string connectionString, string providerName) { var repo = GetRepo(connectionString, providerName); var results = repo.Find(expression); DIVISION single = null; if (results.Count() > 0) { single = results.ToList()[0]; } return(single); }
public static DIVISION SingleOrDefault(Expression <Func <DIVISION, bool> > expression) { var repo = GetRepo(); var results = repo.Find(expression); DIVISION single = null; if (results.Count() > 0) { single = results.ToList()[0]; single.OnLoaded(); single.SetIsLoaded(true); single.SetIsNew(false); } return(single); }
void Init() { TestMode = this._db.DataProvider.ConnectionString.Equals("test", StringComparison.InvariantCultureIgnoreCase); _dirtyColumns = new List <IColumn>(); if (TestMode) { DIVISION.SetTestRepo(); _repo = _testRepo; } else { _repo = new SubSonicRepository <DIVISION>(_db); } tbl = _repo.GetTable(); SetIsNew(true); OnCreated(); }
internal static IRepository <DIVISION> 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 <DIVISION> _repo; if (db.TestMode) { DIVISION.SetTestRepo(); _repo = _testRepo; } else { _repo = new SubSonicRepository <DIVISION>(db); } return(_repo); }
public static void Setup(DIVISION item) { SetTestRepo(); _testRepo._items.Add(item); }