I am using Forms and DataSet, but now I am trying to use WPF and Entity Framework. My goal is to populate a DataGrid in WPF using the Entity Framework. However, I do not have a database! I have simple text files with data that I need to parse to fill my objects.
However, I get errors such as "The object type" TableName "is not displayed." and such failures I do not have a connection string.
Can I use Entity Framework without a database? Or do I need to return to using a DataSet?
source share