2
Answers

mvc 5 vs mvc 4 ? ? differences

SUNIL GUTTA

SUNIL GUTTA

11y
978
1
Hi
 
I need some expertise from your end many who worked on MVC4  and now working on MVC 5 may know it
 
I just need the important differences i.e standout one's where we can call them a difference ,.
 
The thing is requirement gathering is going on , so i have to stand on which ever version it may be but i need to show why i am in favor of my decession .
 
I hope you got my intention and provide me your views  .
 
Regards
Sunil
Answers (2)
0
Amit Dhania

Amit Dhania

NA 659 164.6k 16y

We can put fields on report dynamically. For it we have to put formula-fields on report on design time.
We can put fields value from database in formula-fields in our c# coding.

For example AttendenceReport is crystal report having formula-field "status".

 AttendenceReport objAttendenceReport=new AttendenceReport();
//{AttendenceTable.Status} values coming from //database                               objAttendenceReport.DataDefinition.FormulaFields["Status"].Text = "{AttendenceTable.Status}";