Exemplo n.º 1
0
 public void Connect()
 {
     tabular16.Connect();
     if (!tabular16.IsDatabaseCompatible)
     {
         tabular14.Connect();
     }
 }
Exemplo n.º 2
0
        public void GetMeasureDMV()
        {
            var tabular = new DaxDrill.Tabular.TabularHelper_2016(serverName, "CashFlow");

            tabular.Connect();
            var measure = tabular.GetMeasureFromDMV("Func Amt Sum");

            Console.WriteLine(measure.TableName);
            Assert.AreEqual("CashFlow", measure.TableName);
        }