Hola,
Saludos, disculpen tengo un problema, comento estoy empesando a utilizar WCF Service y empece a realizar un ejemplo que encontre en una pagina, creo que el proceso fue correcto, pero al ejecutar el Service me manda el siguiente error:

1. Mi archivo app.config contiene las siguientes lineas:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="NorthwindEntities" connectionString="metadata=res://*/ModelEntitie.csdl|res://*/ModelEntitie.ssdl|res://*/ModelEntitie.msl;provider=System.Data.SqlClient;provider connection string="data source=(local);initial catalog=Northwind;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
<system.serviceModel>
<services>
<service name="WCFandEFService.ProductService">
<host>
<baseAddresses>
<add baseAddress = "http://localhost:8732/
Design_Time_Addresses/WCFandEFService/ProductService/" />
</baseAddresses>
</host>
<endpoint address ="" binding="wsHttpBinding"
contract = "WCFandEFService.IProductService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding"
contract = "IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
Creo que esta generando problema en el service, pero la verdad a un no entiendo esta parte, ojala me puedan ayudar
Gracias