-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
EF migration failing #9904
Comments
This is happening just using the tutorial I am unable to use EF migrations for 2.0 projects right now. Here's what I receive using the tutorial. My files are same as tutorial. Take a look at the second line being generated "rosoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]", where is this coming from.
|
@pgmolloy Can you post a link to the specific tutorial that you are following? |
EF Team Triage: Closing this issue as the requested additional details have not been provided and we have been unable to reproduce it. BTW this is a canned response and may have info or details that do not directly apply to this particular issue. While we'd like to spend the time to uniquely address every incoming issue, we get a lot traffic on the EF projects and that is not practical. To ensure we maximize the time we have to work on fixing bugs, implementing new features, etc. we use canned responses for common triage decisions. |
Somewhere in our code, there is a Console output, with ":" in the string. public class BloggingContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
Console.WriteLine(":"); //This is the end of the world.
optionsBuilder.UseSqlServer(@"Server=;Database=EFGetStarted.ConsoleApp.NewDb;Trusted_Connection=True;");
}
} |
@oneandy If you are reporting a bug, can you please open a new issue with a full description of the behavior and a runnable project/solution that demonstrates the issue. |
No description provided.
The text was updated successfully, but these errors were encountered: