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