Lets say I have a whole lot of Terms in the Term Store.
When I create the Term items I am setting a custom property like this:
Term term = termSet.CreateTerm("ParentTerm", 1029, new Guid("{0368F902-740B-4855-A4A7-FA8F96813CCB}"));
term.SetCustomProperty("OBJID", "2222");
termStore.CommitAll();
So far so good, but now how would I perform a search to find this particular term based on its custom property, in this case OBJID.
Is there built in search methods for terms?
There is the
TaxonomySession session = new TaxonomySession(site);
session.GetTerm("GUID_OF_TERM");
But this is not the same as the term custom property - thanks!