示例#1
0
 public DaxManager(String filePath, SynchronizationContext syncContext)
 {
     _document = DaxDocument.Load(filePath);
     _syncContext = syncContext;
 }
示例#2
0
 public void ReloadDocument()
 {
     try
     {
         _document = DaxDocument.Load(_document.FilePath);
     }
     catch (Exception ex)
     {
         DoErrorEvent(ex);
     }
 }