I am building a new application based on MVC and considering LINQ-To-SQL/Entity Framework. I a have entity which has a numerical status Like (0 - Open, 1 - Active, 2 - Closed), Where should i Put the logic to show appropriate string (Enum??) in the view/controller or model which is generated automatically? Should I move all such logic into business layer? Should I add business logic and a new property (To show the string status) to the partial classes build by LINQ-To-SQL?
|
1
|
|
|
|
|
|
Actually, LINQ-to-SQL can bind integers directly to enums (to either If this isn't an option, then I would rename the status property in the class (again via the dbml) to something like
|
||||
|
