0

必須かキーかを示す装飾されたプロパティを持つ 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;
        }
    }
4

2 に答える 2

0

クラスのctorにIDを割り当ててみてください。

ID を読み取り専用 (設定なし) にします。通常、キーの改訂 (作成のみ) を許可したくないでしょう。

于 2012-08-08T16:28:44.153 に答える
0

コンストラクターで設定するのはどうですか:

    public MyEntryElement(ConfigElement parent)
        : base(parent)
    {
        if ( String.IsNullOrEmpty(ID) )
        {
            ID = Guid.NewGuid().ToString();
        }
    }
于 2012-08-08T16:30:08.280 に答える