答案 0 :(得分:1)
你有一些选择:
each cars
p {{color}}, {{brand}}
或
each cars
p
| You can also do this:
| #{color}, {{brand}}
或
class ManagerViewModel
{
string Name;
long salary;
string workType;
//8 more such properties
List<EmployeeViewModel> Dependents;
}
class EmployeeViewModel
{
string Name;
long salary;
string workType;
//8 more such properties
List<EmployeeViewModel> Dependents;
}