English 中文(简体)
绕过成员国名不能与随附成员国名的类型相同
原标题:Bypassing member names cannot be the same as their enclosing type

类似 : < a href=" https://stackoverflow.com/ questions/3528786/members-names-cannot-be-the-same-as-the-same-as-the-enclosing-type -type" 成员名称不能与随附类型 相同, 除非我不能改变元数据, 我想完全忽略该类 。

我试图在2010年视觉工作室添加一个服务参考资料,但我有以下错误:

The custom tool ‘DataServiceClientGenerator’ failed. Data service client code-generation failed: Schema specified is not valid. Errors: (0,0) : error 0042: Name foo cannot be used in type Microsoft.Crm.Sdk.Data.Services.foo. Member names cannot be the same as their enclosing type..

我理解这个错误是因为有人在对象 foo 中指定了字段 foo , 但我无法更改 。

无法在客户关系管理内部做出任何改变, 我怎样才能提供我的服务参考?

我曾经想过下载 $metatadata ,然后删除犯罪类型,然后保存(因为这种类型不是我无论如何都会使用的类型),但是我不知道如何让它起作用,因为它不是过于直截了当的。

我尝试将服务与C#和VB.NET联系起来,但两者都行不通,理想的办法是两者都可行的解决办法,但此时此刻,我愿意接受只对其中之一起作用的解决办法。

最佳回答

我已设法解决这个问题。

http://localhost/myWcfDataService.svc/$metadata

保存此结果到磁盘, 如 c:metadata. csdl

然后手动编辑文件,删除(或重命名)违规字段(这将导致它无法用于您的服务,但比整个服务不起作用要好)。

然后运行如下 :

c:WindowsMicrosoft.NETFrameworkv4.0.30319DataSvcUtil.exe /language:CSharp /in:c:metadata.csdl /out:c:serviceReference1.cs

现在将新生成的 serviceReference1.cs 文件添加到您的视觉工作室工程中, 查找从 System.Data.Services.Client.DataServicesServicesText 继承的类别, 这是您的服务切入点 。

详情请见这里

问题回答

而不是简单的. cs 文件:

  • Save your http://localhost/myWcfDataService.svc/$metadata as file, eg. myService.csdl
  • Edit it to solve names cannot be the same as their enclosing type manually. It is caused when a class has a field with the same name. I decided to rename classes, eg. from foo to foo_. You can rename fields instead. Run c:WindowsMicrosoft.NETFrameworkv4.0.30319DataSvcUtil.exe /language:CSharp /in:myService.csdl /out:serviceReference1.cs periodically to see when you eliminated all errors.
  • Rename myService.csdl to $metadata
  • Temporarily run some web-server in the same folder as $metadata file. For example, i had python 3 installed and simply ran python -m http.server from the folder where $metadata is.
  • Add Service Reference in Visual Studio as usual, but use your temporary webserver address. In my case it was http://localhost:8000. Visual Studio will request /$metadata and generate everything.




相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签