I have a modified T4 template that builds classes from my edmx and its working smoothly except for derived classes.
Product : BaseItem // works fine as do all top level classes
TranslatedProduct : Product : BaseItem // dang
I'm confused about how and where I can conditionally set the T4 template to ignore : BaseItem in the case of a derived class - ie
TranslatedProduct : Product
eg.
<#=Accessibility.ForType(entity)#> <#=code.SpaceAfter(code.AbstractOption(entity))#>partial class <#=code.Escape(entity)#><#=code.StringBefore(" : ", code.Escape(entity.BaseType))#> : BaseItem
In my head i imagined it like -
if(code.Escape(entity.BaseType).Equals(string.empty)
{
<#=Accessibility.ForType(entity)#> <#=code.SpaceAfter(code.AbstractOption(entity))#>partial class <#=code.Escape(entity)#> : BaseItem
}
else
{
<#=Accessibility.ForType(entity)#> <#=code.SpaceAfter(code.AbstractOption(entity))#>partial class <#=code.Escape(entity)#><#=code.StringBefore(" : ", code.Escape(entity.BaseType))#>
}
But I recieve syntax errors so I'd like to see if anyone else has tried this and if I'm on the right path
Thanks