为ConfigurationProperty密钥生成ID?

时间:2012-08-08 16:25:17

标签: c# asp.net .net c#-4.0 configuration

我有一个带有装饰属性的ConfigElement,指示它是否是必需的或键。我想把它作为一个关键,但我如何生成一个密钥,所以我不必依赖用户提出一个唯一的密钥?我尝试使用Guid.NewGuid(),但它给出了一个错误,说默认值必须是常量:

An attribute argument must be a constant expression, 
typeof expression or array creation expression of an attribute parameter type

这是我班级的样子:

public class MyEntryElement : ConfigElement
{
    #region Constructor

    public MyEntryElement(ConfigElement parent)
        : base(parent)
    {
    }

    #endregion

    #region Properties

    [ConfigurationProperty("id", DefaultValue = Guid.NewGuid(), IsRequired = true, IsKey = true)]
    [ObjectInfo(Title = "ID", Description = "Defines the id of the entry.")]
    public string ID
    {
        get
        {
            return (string)this["id"];
        }
        set
        {
            this["id"] = value;
        }
    }

    [ConfigurationProperty("note", DefaultValue = "", IsRequired = true)]
    [ObjectInfo(Title = "Note", Description = "Defines the note of the entry.")]
    public string Note
    {
        get
        {
            return (string)this["note"];
        }
        set
        {
            this["note"] = value;
        }
    }

2 个答案:

答案 0 :(得分:0)

尝试在班级的ctor中分配id。

我会让ID只读(没有设置)。通常不希望允许修改密钥(仅创建)。

答案 1 :(得分:0)

如何在构造函数中设置它:

    public MyEntryElement(ConfigElement parent)
        : base(parent)
    {
        if ( String.IsNullOrEmpty(ID) )
        {
            ID = Guid.NewGuid().ToString();
        }
    }