public FKandNavigationFromModel(T model) { _db = new NorthWindRevEntities(); _dbSet = _db.Set <T>(); _model = model; _assem = typeof(YoutubeDevExpressMVC.Web.Models.Db.Product).Assembly; }
public CRUDController() { _db = new NorthWindRevEntities(); _dbSet = _db.Set <TEntity>(); _className = this.GetType().Name; _className = _className.Remove(_className.Length - 10); }