I have a partial class with a constructor, but the constructor is throwing an error because 'a member with the same signature is already declared' (a constructor of the same name exists in the other partial class). How do I make a constructor for a partial class when the name is already being used?
public partial class DigitalArchivesAssetsDataContext
{
public DigitalArchivesAssetsDataContext()
: base(System.Configuration.ConfigurationManager.ConnectionStrings["digitalArchivesAssets"].ConnectionString, mappingSource)
{
OnCreated();
}
}