Hello,
A question please...afeter a search resultat we loop on the property... one of the property represente name of person ( wich is other class with other property)..
we need to get the property of theses other claff.... is it possible to do this by using the searchForObjectBYcondition already use? or are we oblige to make a loop and a search.?
can you indicate different way to do this please.?
ObjectSearchResults searchResults = vault.ObjectSearchOperations.SearchForObjectsByConditionsEx(searchConditions, MFSearchFlags.MFSearchFlagNone, SortResults: false); foreach (ObjectVersion ov in searchResults) { PropertyValues LstPoperty = vault.ObjectPropertyOperations.GetProperties(ov.ObjVer); foreach (PropertyValue Property in LstPoperty) { string tt = Property.TypedValue.ToString(); int idProperty = Property.PropertyDef; tt = Property.GetValueAsText(true, true, true, true, true, true); Console.WriteLine(idProperty.ToString() + tt); // one of the property have a list of name and fist name of people ( wich is an other class with other property) // we need to get the property of this list of other class.. // can you indicate different way to do this please.? } }