private void ShowSQLImpl()
        {
            var service = new SupportService(User);
            var sql     = service.GenerateQuerySQL(_model, IsDistinct);
            var frm     = new SQLViewer(sql)
            {
                Owner = this.FindParentWindow()
            };

            frm.ShowDialog();
        }
Example #2
0
 private void ShowSQLImpl()
 {
     var service = new SupportService(User);
     var sql = service.GenerateQuerySQL(_model, IsDistinct);
     var frm = new SQLViewer(sql) {Owner = this.FindParentWindow()};
     frm.ShowDialog();
 }