Where are the Entity Framework Classes for the Demo Database?
I just started using LINQPad (loving it so far) but wanted to dive deeper into the Demo Database C# classes. I found where the SQLite file ChinookDemoDb.sqlite is stored so can open the database and view the data. However, I'm interested to see how the C# classes for EF are set up. Is that code available anywhere?
Comments
LINQPad creates those classes on the fly via a built-in scaffolder. You can see what it generates by pressing F12 (go to definition) on a database symbol or pressing Alt+Shift+R and then manually navigating in ILSpy.
Great, thanks Joe!