public GizmosController(GizmoContext context) { _context = context; if (!_context.Gizmos.Any()) { _context.AddRange(GizmosData.Get()); _context.SaveChanges(); } }
public GizmosControllerShould() { var builder = new DbContextOptionsBuilder <GizmoContext>() .UseInMemoryDatabase("Gizmos"); var context = new GizmoContext(builder.Options); if (!context.Gizmos.Any()) { context.AddRange(GizmosData.Get()); context.SaveChanges(); } _ctx = context; }