Ejemplo n.º 1
0
        static void CreateDatabase()
        {
            // Creating DbContext and create the database if not exist, else thorw exception that is already exist
            var db = new OffersDbContext();

            if (!db.Database.EnsureCreated())
            {
                throw new ArgumentException("Database already exist!");
            }

            // We use our helper class ProcessInput to read from our csv file the values of each row.
            var valueRows = ProcessInput.ReadRowsValue();

            // When we get the collection of all rows, we loop it
            foreach (var row in valueRows)
            {
                // We extract the information from every row which is separated with ';' and then we create an instance
                // with the current data and add the object to the DbSet Offers, finally saving changes.
                var    rowData                    = row.Split(';').ToList();
                double monthlyFee                 = double.Parse(rowData[1]);
                int    newContractsForMonth       = int.Parse(rowData[2]);
                int    sameContractsForMonth      = int.Parse(rowData[3]);
                int    cancelledContractsForMonth = int.Parse(rowData[4]);

                var offer = new Offer(monthlyFee, newContractsForMonth, sameContractsForMonth, cancelledContractsForMonth);
                db.Offers.Add(offer);
            }
            db.SaveChanges();
        }
Ejemplo n.º 2
0
        protected override void OnModelCreating(ModelBuilder builder)
        {
            base.OnModelCreating(builder);

            // We use the Fluent API to set our colum names in database with exactly the same name as our input is given,
            // using our helper class ProcessInput to get the correct colum name which than we set it using methods of Fluent API

            builder.Entity <Offer>().Property(e => e.OfferId).HasColumnName(ProcessInput.GetOfferId());
            builder.Entity <Offer>().Property(e => e.MonthlyFee).HasColumnName(ProcessInput.GetMonthlyFee());
            builder.Entity <Offer>().Property(e => e.NewContractsForMonth).HasColumnName(ProcessInput.GetNewContractsForMonth());
            builder.Entity <Offer>().Property(e => e.SameContractsForMonth).HasColumnName(ProcessInput.GetSameContractsForMonth());
            builder.Entity <Offer>().Property(e => e.CancelledContractsForMonth).HasColumnName(ProcessInput.GetCancelledContractsForMonth());
        }