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