Fetch Data from resource file(.resx file)

We are going to create word report which supports different languages using Linq reporting engine. All language variables are stored in resource file (.resx file). Is there any way to update word template based on data from resource file?

@manojdesai272 You can read data from .resx file in your code and pass the data into Aspose.Words ReportingEngine ad a data source. But there is no direct way to pass .resx file as a data source ReportingEngine. The provided data should be in the supported form:
https://docs.aspose.com/words/net/linq-reporting-engine-features/

@alexey.noskov Thank you for quick response. Can you please provide code syntax to pass multiple data source to reporting engine?

@manojdesai272 There is no way to pass multiple data sources, but you can combine data sources and pass them as single data source. For example you can use DataSet as a data source and add multiple DataTable object into DataSet.

@manojdesai272 To complete my previous answer. Actually, you can pass several data source into LINQ reporting engine. Please see the following overload of Build method:
https://reference.aspose.com/words/net/aspose.words.reporting/reportingengine/buildreport/#buildreport_2