I have Visual Studio 2010 on Windows 7. My project is using the .net framework 3.5, but how do I go about referencing SP1 methods? The installer tells me to use Window's add / remove system programs, but that says .NET 3.5.1 is installed. I'm trying to follow the example at 'http://blogs.msdn.com/b/alexj/archive/2009/11/07/tip-41-how-to-execute-t-sql-directly-against-the-database.aspx' on executing a raw SQL command with entity framework, but I can not reference ".StoreConnection", as it's an SP1 addition.
Note that when I go to my project properties, I only have the option for .net 3.5 compact and .net 3.5. "SP1" is not listed anywhere.
Thanks in advance
I figured out my issue. I was trying to directly reference the common DBConnection as was shown to me for what Entity.Connection is. I needed to reference the EntityClient.EntityConnection specifically.
Thanks all