Example #1
0
// Send to Excel Implementation


        public async Task Send2Excel()
        {
            IEnumerable <AsycudaDocumentSetEntryDataDetail> lst = null;

            using (var ctx = new AsycudaDocumentSetEntryDataDetailRepository())
            {
                lst = await ctx.GetAsycudaDocumentSetEntryDataDetailsByExpressionNav(vloader.FilterExpression, vloader.NavigationExpression).ConfigureAwait(continueOnCapturedContext: false);
            }
            if (lst == null || !lst.Any())
            {
                MessageBox.Show("No Data to Send to Excel");
                return;
            }
            var s = new ExportToExcel <AsycudaDocumentSetEntryDataDetailExcelLine, List <AsycudaDocumentSetEntryDataDetailExcelLine> >
            {
                dataToPrint = lst.Select(x => new AsycudaDocumentSetEntryDataDetailExcelLine
                {
                }).ToList()
            };

            using (var sta = new StaTaskScheduler(numberOfThreads: 1))
            {
                await Task.Factory.StartNew(s.GenerateReport, CancellationToken.None, TaskCreationOptions.None, sta).ConfigureAwait(false);
            }
        }
Example #2
0
        public async Task SelectAll()
        {
            IEnumerable <AsycudaDocumentSetEntryDataDetail> lst = null;

            using (var ctx = new AsycudaDocumentSetEntryDataDetailRepository())
            {
                lst = await ctx.GetAsycudaDocumentSetEntryDataDetailsByExpressionNav(vloader.FilterExpression, vloader.NavigationExpression).ConfigureAwait(continueOnCapturedContext: false);
            }
            SelectedAsycudaDocumentSetEntryDataDetails = new ObservableCollection <AsycudaDocumentSetEntryDataDetail>(lst);
        }