Question

I'm working on a Custom workflow activity. I've created my own helper.cs (Early Bound Entity Classes) with the Code Generation Tool (CrmSvcUtil.exe)

When I try to compile the code, it returns the following error:

The namespace '' already contains a definition for 'Workflow'

From the Helper.cs file.

Does anyone know what this means?

Was it helpful?

Solution

I suggest you put all the early bound classes in a namespace, so it won't mess up with your other classes. You can specify the namespace with the "/namespace:" parameter for CrmSvcUtil. I usually put the early bound classes in my DataAccess namespace, together with the crm connection classes (Service/ServiceContext wrappers).

That being said, naming your custom workflow step "Workflow" is not really the best thing to do(if that's what you did, at least so I understood). Try capturing the essence of what the step does into the name - like a title.

OTHER TIPS

I had two separate resource files in a same solution. Deleting one of them did the trick :P

Just got this because I thought it would be a great idea to copy all the contents of App_Code into App_Code\bkup before deploying a change. Erm, no.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top