Where can I get the Tridion.ContentManager.Data.ContentManagement DLL?

I want to access the "Fields" property to access the schema fields in the main services in the SDL Tridion, but Visual Studio says that I miss the assembly reference.

I was looking for a namespace and it requires the Tridion.ContentManager.Data.ContentManagement DLL. Where can I find this dll?

+6
source share
2 answers

There is no Fields property in CoreService. If you see this, then you probably have mixed references to TOM.NET and CoreService. You only need a link to the CoreService dll and nothing more. If you don’t have something similar to the Fields implementation, you can take a look at this article: http://code.google.com/p/tridion-practice/wiki/ChangeContentOrMetadata

+5
source

If you want Tridion.ContentManagement.Data.DLL just do this:

  • Open cmd from Run
  • Go to C:\Windows\assembly\GAC_MSIL\Tridion.ContentManager.Data\6.1.0.996__ddfc895746e5ee6b>
  • Copy the file to the desired folder
0
source

Source: https://habr.com/ru/post/914869/


All Articles