Search code examples
c#entity-framework-6code-first

How to calculate total cost


I am Trying to build my First application by Entity Framework 6 Code First using MVC 5 but I have a problem, my application is online restaurant which contains Items class and it contains itemprice and itemamount and I would like to calculate its value itemprice*itemamount to be saved in total cost in Orders class, How I can do that in the initializer[enter image description here][1]???

var Items = new List<MenuItem>
     {
         new MenuItem { ItemName = "Cheese Piza", Itemdesrciption="Pizza with cheese", MenuID=int.Parse("3"), ItemPrice=Decimal.Parse("15.5"), ItemAmount=int.Parse("2")},
         new MenuItem { ItemName = "Bolinez Pasta", Itemdesrciption="pasta with red sous", MenuID=int.Parse("3"),ItemPrice=Decimal.Parse("20.45"), ItemAmount=int.Parse("3")},
         new MenuItem { ItemName = "Holy Cake", Itemdesrciption="Cake with choklet sous", MenuID=int.Parse("3"), ItemPrice=Decimal.Parse("45.5"), ItemAmount=int.Parse("1")},
     };

     Items.ForEach(I => context.Item.Add(I));
        context.SaveChanges();




        var Orderss = new List<Order>
     {
         new Order { CustomerID = int.Parse("1"), ItemID=int.Parse("3"), OrderDate= DateTime.Parse("2005-09-01"),
             TotalPrice = },

     };

Solution

  • I think that data is not necessary to save it in the database because it is a calculated field, I think you could show us the model of your database, to observe your logic, it is something like master detail, where the teacher could be a "Order" table and the table detail the items of that "order Details" order and one more table for the available Items "Items".

        namespace Model
    {
    
        public class Order
        {
            public int Id { get; set; }
    
            public int CustomerId { get; set; }
    
            [ForeignKey( "CustomerId" )]
            public virtual Customer Customer { get; set; }
    
            public virtual List<OrderDetail> Details { get; private set; }
    
            public double Total { get { return Details.Sum( t => t.SubTotal ); } }
    
            public Order()
            {
                this.Details = new List<OrderDetail>();
            }
        }
    
        public class OrderDetail
        {
            public int Id { get; set; }
            public int OrderId { get; set; }
            public virtual Order Order { get; set; }
    
            public int ItemId { get; set; }
    
            [ForeignKey( "ItemId" )]
            public virtual Item Item { get; set; }
    
            public int Quantity { get; set; }
    
            public double SubTotal { get { return this.Item.Price * this.Quantity; } }
        }
    
        public class Item
        {
            public int Id { get; set; }
            public string Name { get; set; }
            public string Description { get; set; }
            public double Price { get; set; }
            public double Cost { get; set; }
        }
    }
    
    namespace Try
    {
        public class Program
        {
            public static void Main()
            {
                using (DataBaseContext context = new DataBaseContext())
                {
                    context.Items.AddOrUpdate( t => t.Name, 
                        new Model.Item() { Name = "MyProduct1", Price= 14.5, Cost=11.5, Description="" } ,
                        new Model.Item() { Name = "MyProduct2", Price = 16.5, Cost = 14.5, Description = "" },
                        new Model.Item() { Name = "MyProduct3", Price = 20.5, Cost = 18.5, Description = "" },
                        new Model.Item() { Name = "MyProduct4", Price = 10.5, Cost = 8.5, Description = "" }
                        );
    
                    context.Savechanges();
    
    
                    Model.Order Order= new Model.Order() { CustomerId=3};
    
                    Order.Details.AddRange( new Model.OrderDetail[] {
                    new Model.OrderDetail {  ItemId= 1, Quantity=2},
                    new Model.OrderDetail {  ItemId= 2, Quantity=1},
                    new Model.OrderDetail {  ItemId= 3, Quantity=5},
                    new Model.OrderDetail {  ItemId= 4, Quantity=6}
                    } );
    
                    Console.WriteLine( "Total: {0} for {1} Items", Order.Total, Order.Details.Count );
                    Console.ReadLine();
                }               
    
            }
        }
    }
    

    please enabled Lazy for auto load Navigation Properties.