vote up 2 vote down star
1

I'm trying to add a custom property which is a guid, but it gives me this error:

System.InvalidCastException: Failed to convert parameter value from a String to a Guid. ---> System.InvalidCastException: Invalid cast from 'System.String' to 'System.Guid'.

I specify this in the config:

<parameter>
<parameterName value="@id" />
<dbType value="Guid" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%X{id}" />
</layout>
</parameter>

The actual code (snippet) i use is this:

        Guid guid = Guid.NewGuid();
        if (defaultLogger.IsEnabledFor(level))
        {
            var loggingEvent = new LoggingEvent(ThisDeclaringType,
 defaultLogger.Repository, defaultLogger.Name, level, message, exception);
            loggingEvent.Properties["Id"] = guid;

Any help please? :) The id field in the database is defined as a uniqueidentifier NOT NULL, but it does not have the primary key contraint.

flag

why do you want a guid? Is this to provide some sort of context? – Mitch Wheat Jan 8 '09 at 13:02

1 Answer

vote up 2 vote down check

For your example the following should work:

<parameter>
<parameterName value="@Oid" />
<dbType value="Guid" />
<layout type="log4net.Layout.RawPropertyLayout">
<key value="Id" />
</layout>
</parameter>

Important is you rename @id to something else otherwise you will get Null values in database even if you try to insert strings,

And then use RawPropertyLayout to store, cus you do not need to do a convertion.

link|flag
You are so learned Papa Homer :) – Hojou Jan 8 '09 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.