Example #1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new OneLedgerContext(
                       serviceProvider.GetRequiredService <DbContextOptions <OneLedgerContext> >()))
            {
                //seed products
                if (!context.Product.Any())
                {
                    context.Product.AddRange(
                        new Product
                    {
                        Name  = "Lg Wei Long",
                        Price = 1M
                    },

                        new Product
                    {
                        Name  = "Mini Wei Long",
                        Price = 0.5M
                    },
                        new Product
                    {
                        Name  = "Da La Pian",
                        Price = 5M
                    }
                        );
                    context.SaveChanges();
                }
            }
        }
Example #2
0
 public ProductController(OneLedgerContext context)
 {
     _context = context;
 }