vote up 0 vote down star

Hi guys, how would I preset a Windsor configuration file parameter with an Enum specified entry such as "EntryType" below?

I currently have this:

<component
      id="test.service" service=".." type=".." lifestyle="transient">
      <parameters>
        <entryType>EntryType.Test</entryType>
      </parameters>
    </component>

Where .. obviously represents the full namespace and assembly.

But receiving this error:

Could not convert from 'EntryType.Test' to 
   Business.Common.Services.Core.TestService+EntryType.
flag

1 Answer

vote up 2 vote down check

Written like this, it worked for me:

<component
  id="test.service" service=".." type=".." lifestyle="transient">
  <parameters>
    <entryType>Test</entryType><!-- NOT EntryType.Test -->
  </parameters>
</component>
link|flag
Shamefully easy... Thanks. ;) – GONeale Oct 27 at 8:48

Your Answer

Get an OpenID
or

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