Column names in each table must be unique. Column name 'StripeRecipientId' in table 'dbo.Foos' is specified more than once

匿名 (未验证) 提交于 2019-12-03 00:56:02

问题:

I have a model class named Foo that has, among others, these properties.

public string StripeRecipientId { get; set; }  public override bool HasProvidedBillingInformation {     get     {         // return !string.IsNullOrEmpty(this.StripeRecipientId);          return false;     } } 

I have enabled migrations and am using Code First. When I run the update-database commandlet, whether with -Force option is specified or not, I get this error:

Column names in each table must be unique. Column name 'StripeRecipientId' in table 'dbo.Foos' is specified more than once.

I double-checked and triple checked and there's only one column of that name in my model as well as in the table. This column was created already by a previous run of the update-database commandlet just a while ago.

I am tempted to delete my database and then apply the migrations, but that will mean me having to create a lot of test data just to be able to test the feature I am working on just now.

I am using Entity Framework v6.1.2.

How do I get rid of this error?

回答1:

Run the Add-Migration command with the -IgnoreChanges flag. Then run Update-Database again.

-Update-

These commands should be run in the Package Manager Console. From the main menu: Tools-> NuGet Package Manager -> Package Manager Console.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!