コード例 #1
0
 public DaxColumnsRemap(ADOTabularConnection AdoTabularConnection) : this()
 {
     Contract.Requires(AdoTabularConnection != null, "The AdoTabularConnection parameter must not be null");
     _connection = AdoTabularConnection;
     _connection.Visitor.Visit(this);
 }
コード例 #2
0
 public ToolPaneBaseViewModel(ADOTabularConnection connection, IEventAggregator eventAggregator)
 {
     PropertyChanged += OnPropertyChanged;
     Connection       = connection;
     EventAggregator  = eventAggregator;
 }
コード例 #3
0
 public List <string> GetSampleData(ADOTabularConnection connection, int sampleSize)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public DmvPaneViewModel(ADOTabularConnection connection, IEventAggregator eventAggregator, DocumentViewModel document)
     : base(connection, eventAggregator)
 {
     Document = document;
 }
コード例 #5
0
 public void UpdateBasicStats(ADOTabularConnection connection)
 {
     throw new NotImplementedException();
 }