2
我正在使用Effort和Entity Framework 4.1(代碼優先)。當我創建假databadse並嘗試添加一些程序集中的重複類型名稱
DbConnection connection = Effort.DbConnectionFactory.CreateTransient();
using (var context = new LoveDatabaseContext(connection))
{
context.Banners.Add(new Banners() { Enabled = true, Name = "Test", Priority = 1, Url = "http:\\test.com" });
}
我得到錯誤: System.ArgumentException:一個組件內有重複的類型名。
我乾淨的解決方案重建,這不是爲我工作
重複http://stackoverflow.com/questions/7328364/system-argumentexception-duplicate-type-name-within-an-assembly其中一個乾淨只有一個答案。 – SilverSideDown
可能的重複[實體框架重複類型名稱在程序集(6.1.0)]中(http://stackoverflow.com/questions/23189266/entity-framework-duplicate-type-name-within-an-assembly-6- 1-0) –