Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

dll

tridion

I want to access "Fields" property for accessing fields of a schema in core services in SDL Tridion but Visual Studio says I am missing an assembly reference.

I searched for namespace and it requires Tridion.ContentManager.Data.ContentManagement DLL. Where can I find this DLL?

like image 655
Aquarius24 Avatar asked May 04 '12 07:05

Aquarius24


1 Answers

There's no Fields property on CoreService. If you see it - you probably have mixed references to TOM.NET and CoreService. You need only reference to CoreService client dll and nothing more. If you wan't to have something similar to Fields implementation - you may take a look at this article: http://code.google.com/p/tridion-practice/wiki/ChangeContentOrMetadata

like image 74
Andrey Marchuk Avatar answered Sep 30 '22 16:09

Andrey Marchuk