Arun Khatri

Arun Khatri

  • NA
  • 9
  • 662

How to show calculated field in the index view?

Mar 21 2016 11:22 PM
In an MVC project I have the following two tables:
 
CaseData (CaseId,CaseNo )
Invoice (InvoiceId, CaseId, Amount)
 
CaseId, the primary key in table CaseData is a foreign key in table Invoice. There is One to Many relationship between table CaseData and Invoice.
 
What I want to do is to show Sum Total of the field Amount against each record of the table CaseData in the Index view.
 
Please consider that I am using Entity Framework to access data in my project. 
 
 
  
 

Answers (3)