The entry '' has already been added error

前端 未结 4 999
陌清茗
陌清茗 2020-12-02 16:32

I have a web.config in ASP.net giving me configuration error.

    


        
相关标签:
4条回答
  • 2020-12-02 16:53

    I got this error and the issue turned out to be a web.config deployed to the root of the domain

    0 讨论(0)
  • 2020-12-02 16:54

    it can be in web.config that is parent to this one. just add

    <remove name="conn2" />
    

    before your add it (again) :)

    alternatively clear all connection string using

    <clear />
    
    0 讨论(0)
  • 2020-12-02 17:04

    You should use <clear /> when adding any providers to your web.config. Read this article: http://weblogs.asp.net/scottgu/archive/2006/11/20/common-gotcha-don-t-forget-to-clear-when-adding-providers.aspx

    The root cause of the above problem rests in how the new provider was registered within the web.config file.

    The section within the web.config file is implemented as a collection, and so it is possible to register multiple providers at the same time

    If you have another project using the same connection string name you will receive this error because that connection string has already been added to the collection.

    0 讨论(0)
  • 2020-12-02 17:16

    If you override the ToString() method then this will work. Looks like the configuration mechanism uses that to check if something already exists in the collection

    0 讨论(0)
提交回复
热议问题