-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ASP.NET/EF Core 2.0.3 patch pre-release test feed - discussion #2254
Comments
I ended up just removing the tools for the time being and that fixed my first issue. I ran into 'dotnet publish' issue too but remedy listed above by @natemcmaster fixed that for now too. |
After update to this version "dotnet ef --startup-project ../WebApi migrations add {MigrationName}"
|
@bricelam / @ajcvickers - any ideas on this error? |
@Eilon this occurs when I have a value object in my entity and ignore it in the model builder with the builder.Ignore(x => x.ValueObject); The error occured in all entity framework operations, not only in add migrations command, do u know any workaround for this ? |
@tiagorosendo Can you please file a new issue for this, including a complete code listing or project that will allow us to reproduce what you are seeing? Also, was this working in 2.0.0 and broke when updating to 2.0.1/2.0.3? |
I'm getting this warning at dotnet run on a project I just shifted from EF Core 2.0 to EF Core 2.0.1-*: also: macOS Sierra (not High Sierra) I have used the tools in a few other projects that I tested out and did not see this warning before. the bright yellow text is hard to miss.
Here is my csproj file:
|
Are we getting close to having a preview package available on nuget.org? |
@komby we're not planning to put preview packages on nuget.org, so please use the MyGet.org test feed in the meantime. The final release is coming up very soon so it shouldn't be a long wait. |
@Eilon: Can you share a timeframe with us? Is it days or weeks? We are facing a bug which is fixed in this release but this keeps us from using it in production. |
@wesselkranenborg Around mid of November 😄 |
Is it possible to use this preview package on Azure App Service? I cannot get my asp.net web application running there when I use the new preview package. |
@rodyvansambeek It is possible to publish this to Azure App Service. You need to use the PublishWithAspNetCoreTargetManifest flag during deployment. More information on this flag can be found here: https://docs.microsoft.com/en-us/dotnet/core/deploying/runtime-store#aspnet-core-implicit-store @natemcmaster also mentions this in his comment: #2254 (comment) |
@Eilon With those three security announcements and the patches that hit NuGet a few hours ago, are the 2.0.3 changes from this pre-release included there? The version numbers are really confusing (e.g. the meta package is on 2.0.3, Razor is on 2.0.1) and there are no tags in the GitHub repositories yet that match the available releases. |
@poke , yes, yesterday's release has all the patch fixes that were in the public test feed, plus a few others. We did just add tags to the repos today/yesterday to hopefully clear a few things up. But, we do recognize that the version numbers are still a bit confusing and we're having some discussions to see how we can simplify them even more. |
Now this version is already published to nuget.org, but we can still get assembly not found exception when deploy on Azure Web Service without the PublishWithAspNetCoreTargetManifest flag. |
@kinosang That's because the deployment to Azure App Service is not yet finished. See here: Azure/app-service-announcements#61 |
@davidebbo Since I can't comment on Azure/app-service-announcements#61 ... I'm unable to get my apps working with the latest 2.0.3 package / sdk on azure at all.. This is not good and the csproj changes did nothing to help. |
@niemyjski Can you start a question on the Web App MSDN forum or on StackOverflow? Make sure to include a minimal repro and details on how you're deploying. |
waiting for the next release... |
a long horn |
Hey guys, first time around. I have tried EF Core 2.0.2 and 2.1.0-preview1-final. You can find my sample at https://github.com/digogid/eStore.Sample |
Hi @digogid , if this is an issue with EF Core, can you please log a new issue in https://github.com/aspnet/EntityFrameworkCore/issues with steps to reproduce? Thanks! |
We periodically close 'discussion' issues that have not been updated in a long period of time. We apologize if this causes any inconvenience. We ask that if you are still encountering an issue, please log a new issue with updated information and we will investigate. |
I solved this error by installing the following packages From package manager console <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="1.1.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.4"> |
This is the discussion issue for this announcement: aspnet/Announcements#274
The text was updated successfully, but these errors were encountered: