我想编写一个方法来获取 T4 模板文件中属性的 Nullable 状态。
我已经将它写在我的 TT 文件中,但在 T4 文件中它是不同的
bool IsRequired(object property) {
bool result=false;
? ? ? ? ? ? ? ? ? ? ? ?
return result;
}
List<ModelProperty> GetEligibleProperties(EnvDTE.CodeType typeInfo, bool includeUnbindableProperties) {
List<ModelProperty> results = new List<ModelProperty>();
if (typeInfo != null) {
foreach (var prop in typeInfo.VisibleMembers().OfType<EnvDTE.CodeProperty>()) {
if (prop.IsReadable() && !prop.HasIndexParameters() && (includeUnbindableProperties || IsBindableType(prop.Type))) {
results.Add(new ModelProperty {
Name = prop.Name,
ValueExpression = "Model." + prop.Name,
Type = prop.Type,
IsPrimaryKey = Model.PrimaryKeyName == prop.Name,
IsForeignKey = ParentRelations.Any(x => x.RelationProperty == prop),
IsReadOnly = !prop.IsWriteable(),
// I Added this >>
IsRequired = IsRequired(prop)
});
}
}
}
怎么做???