Wenn ich Attribute auf eine partielle Klasse über die Attribut "MetadataType werden diese Attribute nicht gefunden über Attribut.IsDefined() . Weiß jemand, warum, oder was ich falsch mache?
Unten ist ein Testprojekt, das ich dafür erstellt habe, aber ich versuche wirklich, benutzerdefinierte Attribute auf eine LINQ to SQL-Entitätsklasse anzuwenden - wie diese Antwort auf diese Frage .
Gracias.
using System;
using System.ComponentModel.DataAnnotations;
using System.Reflection;
namespace MetaDataTest
{
class Program
{
static void Main(string[] args)
{
PropertyInfo[] properties = typeof(MyTestClass).GetProperties();
foreach (PropertyInfo propertyInfo in properties)
{
Console.WriteLine(Attribute.IsDefined(propertyInfo, typeof(MyAttribute)));
Console.WriteLine(propertyInfo.IsDefined(typeof(MyAttribute), true));
Console.WriteLine(propertyInfo.GetCustomAttributes(true).Length);
// Displays:
// False
// False
// 0
}
Console.ReadLine();
}
}
[MetadataType(typeof(MyMeta))]
public partial class MyTestClass
{
public string MyField { get; set; }
}
public class MyMeta
{
[MyAttribute()]
public string MyField { get; set; }
}
[AttributeUsage(AttributeTargets.All)]
public class MyAttribute : System.Attribute
{
}
}