I'm trying to establish access to an embedded SQL resource file I've created in a Class Library. However, I'm not sure where to go from here.
I've accessed the resource using:
Assembly.GetExcecutingAssembly().GetManifestResourceStream("InsertTest.sql");
My understanding is that there is a way to access them in a strongly typed fashion, but I can't seem to get a handle on the project or the solution to browse through their respective properties or resources programatically.
What am I missing?
Assembly.GetExecutingAssembly().GetManifestResourceStream("InsertTest.sql");, but I can't figure out how to access this in a strongly typed way.System.IO.File, orSystem.String(for the data in the file), etc.