I just install Visual Studio 2010 on a 64 bit VM with Windows 7 64 bit. The VM is on an ESXi Hypervisor. When I tried to create my first project I don't see the Entity Framework template (ADO .NET Entity Framework). Am I missing a step here? Any and all help is appreciated.
相关问题
- How to Debug/Register a Permanent WMI Event Which
- the application was unable to start correctly 0xc0
- Entity Framework Code First Migration
- Visual Studio 2010 randomly says the command line
- (ASP.NET) Project file must include 'WindowsBa
相关文章
- How to show location of errors, references to memb
- Log4Net Multiple Projects
-
EF6 DbSet
returns null in Moq - Entity Framework 4.3.1 failing to create (/open) a
- EF6 code first: How to load DbCompiledModel from E
- Compiling error in C++ project with C and C++ code
- Why do I need a ToList() to avoid disposed context
- Code-First Add-Migration keeps adding the same col
Unless I misunderstood your question, you have to start a project (web application, wpf application etc), and then add ado.net entity data model.
See fourth figure on this page:
http://weblogs.asp.net/rajbk/archive/2010/05/09/creating-an-asp-net-report-using-visual-studio-2010-part-1.aspx
Update
Try
devenv /installvstemplates
Make sure you're targeting 4.0 and not 3.5.
I just had the very same problem. Actually, you have to check "SQL Server 2008 express" in Visual Studio installation, or Entity Framework won't be installed.
@Will thanks for all the help. I was able to solve this problem by using the following steps:
d. Click Update
Thanks to all!!