OCME Up3 - dictionary synchronization

Hi,
I have a XFM project ( Oracle 12 and OCME Up3) and have problems with the dictionaries synchronization. I have another data in XML dictionary in a local file and another in DB. Of course in the XFM schema is  set Dynamic Update. If I use code (below) to get values from the dictionary, the values are getting from the local file and there are incorrect.
So, how to update the dictionaries in XFM schema file?
      

public void getDomainValues (String domainString)

        {
            CmdMgr myCmdMgr = myUstation.CreateObjectInMicroStation("xft.CmdMgr");

            int numRows = myCmdMgr.GetDomainListRowCount(domainString);

            using (StreamWriter writer = new StreamWriter("d:\\log.txt", true))
            {

                for (int iii = 0; iii < numRows; iii++)
                {
                    String Value1 = myCmdMgr.GetDomainListValue(domainString, iii, 0);
                    String Value2 = myCmdMgr.GetDomainListValue(domainString, iii, 1);
                    String Value3 = myCmdMgr.GetDomainListValue(domainString, iii, 2);

                    writer.WriteLine("Value1: " + Value1 + " Value2: " + Value2 + "  Value3: " + Value3);
                }
            }
        }