This section describes step by step procedure to create an RDLC report using Visual Studio Reporting project type.
If you are using Microsoft Visual Studio lower to 2017 version then you should update SSDT with the Business Intelligence templates. Refer to Download SQL Server Data Tools.
3. Create the class with necessary properties. You can find the reference below,
```csharp
public class ProductSales
{
public string ProdCat { get; set; }
public string SubCat { get; set; }
public string OrderYear { get; set; }
public string OrderQtr { get; set; }
public double Sales { get; set; }
}
```
Report Wizard
to start the report creation with dataset selection.ProductSales
, and then click Finish.SalesData
.Now, the RDLC report is displayed in the Visual Studio as follows.
To render the RDLC using Report Viewer, refer to the RDLC Report section.