I am customizing my .tt file in EF 4.0. Now as part f customization I need to add some code to a property in POCO class generation, if the property type is Nullable<System.DateTime>
or System.DateTime
. I am not able to find the proper syntax for comparison.
I have the following code in .tt file.
foreach (EdmProperty edmProperty in entity.Properties.Where(p => p.TypeUsage.EdmType is PrimitiveType && p.DeclaringType == entity))
{
bool isDefaultValueDefinedInModel = (edmProperty.DefaultValue != null);
//Here I need to check whether my edmProperty is Nullable<System.DateTime> or System.DateTime, so that I can insert custom code.
}
Please help.
if (((PrimitiveType)edmProperty.TypeUsage.EdmType).
PrimitiveTypeKind == PrimitiveTypeKind.DateTime && edmProperty.Nullable)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With