c#4.0使用(指定的属性和attribute.data)获取类属性

fer*_*ega 4 c# reflection custom-attributes c#-4.0

我想得到我的类的哪些属性具有一个具体字符串的确切属性.我有这个实现(属性和类):

[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
public class IsDbMandatory : System.Attribute
{
    public readonly string tableField;

    public IsDbMandatory (string tableField)
    {
        this.tableField= TableField;
    }
}

public Class MyClass 
{
    [IsDbMandatory("ID")]
    public int MyID { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

然后我以这种方式获得具有具体属性的属性:

public class MyService
{
   public bool MyMethod(Type theType, string myAttributeValue)
   {            
       PropertyInfo props = 
           theType.GetProperties().
                  Where(prop => Attribute.IsDefined(prop, typeof(IsDbMandatory))); 
   }
}
Run Code Online (Sandbox Code Playgroud)

但我只需要具有具体属性isDbMandatory和具体字符串的属性myAttributeValue.

我该怎么做 ?

Dar*_*rov 7

var props = theType
    .GetProperties()
    .Where(
        prop => ((IsDbMandatory[])prop
            .GetCustomAttributes(typeof(IsDbMandatory), false))
            .Any(att => att.tableField == "blabla")
    );
Run Code Online (Sandbox Code Playgroud)