Hi,
I am trying to create term inside an existing termset. Following is my code
I am trying to create a term if it doesn't exist in termset. Following is my code
using (SPSite mySite=new SPSite(URL,SPUserToken.SystemUser))
{
uisng (SPWEb myWeb= mySite.OpenWeb())
{
TaxonomySession session = new TaxonomySession(myWeb.Site);
TermStore termStore = session.TermStores[TermStoreName];
Group group = termStore.Groups("testGroupName");
//var termSet = group.TermSets["existingTermSet"];
TermSet ts=null;
ts=group.TermSets["existingTermSet"];
int lcid = CultureInfo.CurrentCulture.LCID;
ts.CreateTerm("ABC",lcid);
}
}
This throws an error saying "Value cannot be null" in the following line:
ts.CreateTerm("ABC",lcid);
I am really puzzled by this error.
Please suggest me an alternative or root cause so that I can proceed. I am at a loss right now.
I have to use Server Side Object Model and not CSOM