Entity framework integration in visual studio 2019 - mysql

I just installed VS 2019 (my machine didn't have VS 2017) right now I trying to integrate EF without luck.
I need your suggesting how to do so?
Thanks for your help.

Make sure that you have installed the entity framework tools (no perfect translations) tools --> tools and functionalities --> from the vs2019 installer --> single components --> entity framework 6 tools.
Then add the EF6 to your solution from Nuget as usual.

Related

EF Core Power Tools - Missing "Create EF Core DB Context..." Menu

We are using EF Core Power Tools, v2.5.1145 on VS 2022 Community Edition.
We have a Visual Studio Database project. In the screen shot below, the author of EF Core Power Tools, Erik Ejlskov Jensen, indicates you can right-click on the Database Project and you should see a menu, "Create EF Core DbContext...".
Unfortunately, I do not see that menu option. I am sure EF Core Power Tools is installed, at least it is in other VS solutions, but in the solution containing the Database project, it appears the extension is not running or perhaps is not working.

installing asp.net mvc web application on mac, but getting these error

Have attached an image of all the packages and references I am trying to build an ASP.NET MVC Web Application on Visual Studio 2019 Community for Mac, but I am getting these errors. I tried a lot to resolve these, but couldn't find any answers online. It would be great if someone can help me figure these out.
This project was previously developed and build on Windows, but the same project does not build properly on Mac, and now I am getting these errors. One reason could be ASP.NET having different frameworks, but not sure which framework would be suitable for these packages.
Adding another picture, I have updated the ASP.NET framework to 4.7.2 from version 2.0 click to view image
And I left with very few errors only "System.Web.Entity" picture attached
System.Web.entity is for .NET Framework and Asp.Net MVC project is not cross-platform.
So,it's not possible to build ASP.NET MVC projects on the Mac that aren't based on .NET Core or Mono.ASP.NET 4.x is not something officially supported like ASP.NET Core on macOS.
If you want to use ASP.NET 4.x, stick to Windows. If you want to use macOS and VS for Mac, use ASP.NET Core. There is almost no gray area in between to discuss.
Another suggestion is that you could use virtual machine to run windows inside Mac.
Refer to Is it possible to develop ASP.NET MVC applications in Visual Studio for Mac?

Unable to find "CreateDeploymentUtility" in SQL Server 2017

I observe that CreateDeploymentUtility is not available in same place as it should be as explained in this video. By any chance do you know where I can find and set it?
I am using Microsoft Visual Studio Enterprise 2017, version 15.3.4, .Net Framework version 4.7.02046
The SQL Server 2017 Integration Services (SSIS) introduced the
Incremental Package Deployment feature that allows you to deploy one
or more packages without deploying the whole project.
To Deploye follow steps given in below Link.
https://learn.microsoft.com/en-us/sql/integration-services/packages/deploy-integration-services-ssis-projects-and-packages#PackageModel

Is MySQL Entity supported in Visual Studio Ultimate 2012 RC?

I installed MySQL connector for .Net v6.5 and it is supported by Entity Framework. When I use Visual Studio 2012 and try to add an ADO.NET Entity Data Model, I can't see MySQL. There are just Microsoft SQL Servers. It worked in VS 2010.
This question said that they are working on it - is there a conclusion?
use this mysql connector for vs 2012. once you install it then you have no such error and
mysql server shows in datasource.
http://dev.mysql.com/downloads/connector/net/6.6.html
The connector .NET v6.5.4 available today does not support VS 2012. You can't add a connection to MySQL in the Server Explorer to begin with.
Support will be included in 6.5.5 as per post: MySQL forum
There is apparently some workarounds and 3rd party ways to get this working but personally I will just wait.
Just to provide an update: The 6.5 version of the connector does NOT support VS2012.
But there is a development release of 6.6 that does.
Go to the following URL and click on the tab "Development Releases" to download it:
http://dev.mysql.com/downloads/connector/net/#downloads
Download "MySQL.Connector.Net.6.5.4.VS2012.vsix" and install it to be able to use MySQL in Visual Studio 2012.
You might need to restart Visual Studio after installing it to see the changes.

Is there any way to use Entity Framework 4.1 code First approach using Visual Studio 2008 Service Pack 1?

Is there any way to use Entity Framework 4.1 code First approach using Visual Studio 2008 Service Pack 1?
I mean can i use DBcontext and DDBset approach in Visual Studio 2008 Service Pack 1.
I googled a lot but didn't get any answer.
I have used EF 4.1 feature in vs 2010 with MVC and N tier application. But There is a need for me to use Entity Framework 4.1 Code first approach in Visual Studio 2008 service pack 1 . Because my application has built in .net Framework 3.5 .
It is not possible. EntityFramework.dll has dependency on System.Data.Entities.dll from .NET 4.0.