My program should:
- Load a data table from a legacy raw data file.
- Provide an interface to display, filter, graph, etc.
My approach is to create an in-memory database as a DataSource for binding the filter controls, results grid, graphs, etc.
Question: What is the simplest way to define and populate this in-memory database?
Edit: I only have a minimal knowledge of LINQ. In the past, I'd always been able to just drag a database table or query into the form or webpage. Visual Studio would create the DataSet, DataTable, DataSource, etc objects for me.
... where do I define this structure (an XML file, in-code, wizard, drag and drop)? what data objects do I need? etc