如何检查t4模板中的属性类型

时间:2014-04-13 09:40:03

标签: t4

我想检查t4.i中的房产类型。想要获得房产并在t4办理登机手续。 请给出解决方案

 foreach (PropertyMetadata property in ModelMetadata.Properties)

  {

   //here how to check
  if(proprty.Type.ToString=="string")

1 个答案:

答案 0 :(得分:0)

应该是

property.UnderlyingType == typeof(string)

祝你好运