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

发布于 2024-10-30 19:18:11 字数 852 浏览 1 评论 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; }
}

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

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

但我只需要具有具体属性 isDbMandatory 和具体字符串 myAttributeValue 里面。

我该怎么办?

I would like to get what properties of my class have an exact attribute with a concrete string. I have this implementation (Attribute and Class):

[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; }
}

Then I get the property with the concrete attribute in this way:

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

But I need only the properties with concrete attribute isDbMandatory AND concrete string myAttributeValue inside.

How can I do it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恍梦境° 2024-11-06 19:18:11
var props = theType
    .GetProperties()
    .Where(
        prop => ((IsDbMandatory[])prop
            .GetCustomAttributes(typeof(IsDbMandatory), false))
            .Any(att => att.tableField == "blabla")
    );
var props = theType
    .GetProperties()
    .Where(
        prop => ((IsDbMandatory[])prop
            .GetCustomAttributes(typeof(IsDbMandatory), false))
            .Any(att => att.tableField == "blabla")
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文