I'm trying to use the code given in this article
Entity Framework DateTime and UTC
[AttributeUsage(AttributeTargets.Property)]
public class DateTimeKindAttribute : Attribute
{
private readonly DateTimeKind _kind;
public DateTimeKindAttribute(DateTimeKind kind)
{
    _kind = kind;
}
public DateTimeKind Kind
{
    get { return _kind; }
}
public static void Apply(object entity)
{
    if (entity == null)
        return;
    var properties = entity.GetType().GetProperties()
        .Where(x => x.PropertyType == typeof(DateTime) || x.PropertyType == typeof(DateTime?));
    foreach (var property in properties)
    {
        var attr = property.GetCustomAttribute<DateTimeKindAttribute>();
        if (attr == null)
            continue;
        var dt = property.PropertyType == typeof(DateTime?)
            ? (DateTime?) property.GetValue(entity)
            : (DateTime) property.GetValue(entity);
        if (dt == null)
            continue;
        property.SetValue(entity, DateTime.SpecifyKind(dt.Value, attr.Kind));
    }
}
}
But I'm getting an error at
var attr = property.GetCustomAttribute<DateTimeKindAttribute>();
Error : The non-generic method 'System.Reflection.MemberInfo.GetCustomAttributes(bool)' cannot be used with type arguments
Any solutions???
 
     
     
    