✏️ Explanatory Question

How is the temporary table exposed to the SSRS report?

👁 3 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

By using the SRSReportDataSetAttribute method.


[SRSReportDataSetAttribute(tableStr(ANSARI_SalesTmp))]
public ANSARI_SalesTmp getSalesTmp()
{
    select * from tmpSales;
    return tmpSales;
}