<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Metadata files not found</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Metadata files not found</description>
  <pubDate>Wed, 13 May 2026 07:59:01 -700</pubDate>
  <lastBuildDate>Fri, 16 Mar 2012 10:27:03 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=3336</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Metadata files not found :   Thanks for the update, skingaby.I...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=13003#13003</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=892" rel="nofollow">sbelini</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 16-Mar-2012 at 10:27am<br /><br />Thanks for the update, skingaby.<div>&nbsp;</div><div>I was looking at your projects, but was having trouble as it has references to non-included assemblies and doesn't compile.</div><div>&nbsp;</div><div>Silvio.</div>]]>
   </description>
   <pubDate>Fri, 16 Mar 2012 10:27:03 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=13003#13003</guid>
  </item> 
  <item>
   <title>Metadata files not found :   Nevermind. We figured it out....</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=13000#13000</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 16-Mar-2012 at 7:08am<br /><br />Nevermind.&nbsp; We figured it out.&nbsp; <div>&nbsp;</div><div>We have a ton of modules and models that all use the same connection string.&nbsp; So we have a CustomDataSourceKeyResolver that auto-resolves the DataSourceKey if the DataSourceKey property is set to the exact name of the .edmx file.</div><div>&nbsp;</div><div><pre style=": white; color: black; font-family: C&#111;nsolas;"><span style="color: blue;">class</span>&nbsp;<span style="color: rgb43, 145, 175;">CustomDataSourceKeyResolver</span>&nbsp;:&nbsp;<span style="color: rgb43, 145, 175;">IDataSourceKeyResolver</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">public</span>&nbsp;<span style="color: rgb43, 145, 175;">IDataSourceKey</span>&nbsp;GetKey(<span style="color: blue;">string</span>&nbsp;keyName,&nbsp;<span style="color: blue;">string</span>&nbsp;keyExtension,&nbsp;<span style="color: blue;">bool</span>&nbsp;onServer)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">if</span>&nbsp;(!onServer)&nbsp;<span style="color: blue;">return</span>&nbsp;<span style="color: blue;">null</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">try</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">string</span>&nbsp;site&nbsp;=&nbsp;<span style="color: rgb163, 21, 21;">"/Ag"</span>;<span style="color: blue;">#if</span>&nbsp;DEBUG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;site&nbsp;=&nbsp;<span style="color: rgb163, 21, 21;">"/ExperimentWeb"</span>;&nbsp;&nbsp;<span style="color: green;">//When&nbsp;ran&nbsp;locally&nbsp;this&nbsp;is&nbsp;the&nbsp;site&nbsp;name</span><span style="color: blue;">#endif</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.Configuration.<span style="color: rgb43, 145, 175;">Configuration</span>&nbsp;rootWebConfig&nbsp;=&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.Web.Configuration.<span style="color: rgb43, 145, 175;">WebConfigurationManager</span>.OpenWebConfiguration(site); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.Configuration.<span style="color: rgb43, 145, 175;">ConnectionStringSettings</span>&nbsp;connString;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">string</span>&nbsp;conKey&nbsp;=&nbsp;<span style="color: rgb163, 21, 21;">"TheOneKey"</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">if</span>&nbsp;(rootWebConfig.ConnectionStrings.ConnectionStrings.Count&nbsp;&gt;&nbsp;0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;conKey&nbsp;=&nbsp;<span style="color: blue;">string</span>.IsNullOrEmpty(keyExtension)&nbsp;?&nbsp;conKey&nbsp;:&nbsp;keyExtension;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;connString&nbsp;=&nbsp;rootWebConfig.ConnectionStrings.ConnectionStrings&#091;conKey&#093;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">if</span>&nbsp;(connString&nbsp;==&nbsp;<span style="color: blue;">null</span>)&nbsp;<span style="color: blue;">return</span>&nbsp;<span style="color: blue;">null</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">else</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">return</span>&nbsp;<span style="color: blue;">null</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">bool</span>&nbsp;trace&nbsp;=&nbsp;keyName&nbsp;!=&nbsp;<span style="color: rgb163, 21, 21;">"CommonModel"</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">string</span>&nbsp;name&nbsp;=&nbsp;<span style="color: blue;">string</span>.IsNullOrEmpty(keyExtension)&nbsp;?&nbsp;keyName&nbsp;:&nbsp;keyName&nbsp;+&nbsp;<span style="color: rgb163, 21, 21;">"_"</span>&nbsp;+&nbsp;keyExtension;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">string</span>&nbsp;connectionString&nbsp;=&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">string</span>.Format(&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: rgb163, 21, 21;">"metadata=res://*/{0}.csdl|res://*/{0}.ssdl|res://*/{0}.msl;provider={2};provider&nbsp;connection&nbsp;string='{1}'"</span>,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;keyName,&nbsp;connString.ConnectionString,&nbsp;connString.ProviderName);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">return</span>&nbsp;<span style="color: blue;">new</span>&nbsp;<span style="color: rgb43, 145, 175;">ClientEdmKey</span>(name,&nbsp;connectionString,&nbsp;trace,&nbsp;<span style="color: rgb163, 21, 21;">"FromResolver"</span>);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;<span style="color: blue;">catch</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue;">throw</span>&nbsp;<span style="color: blue;">new</span>&nbsp;<span style="color: rgb43, 145, 175;">Exception</span>(<span style="color: rgb163, 21, 21;">"Unable&nbsp;to&nbsp;find&nbsp;connection&nbsp;information."</span>);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;}</pre><pre style=": white; color: black; font-family: C&#111;nsolas;">&nbsp;</pre></div>]]>
   </description>
   <pubDate>Fri, 16 Mar 2012 07:08:31 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=13000#13000</guid>
  </item> 
  <item>
   <title>Metadata files not found :   Still wondering if you can...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12999#12999</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 16-Mar-2012 at 5:06am<br /><br />Still wondering if you can give me a clue where to look to fix this?&nbsp; Thanks.]]>
   </description>
   <pubDate>Fri, 16 Mar 2012 05:06:40 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12999#12999</guid>
  </item> 
  <item>
   <title>Metadata files not found : Thanks skingaby,We will take a...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12985#12985</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=892" rel="nofollow">sbelini</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 14-Mar-2012 at 1:54pm<br /><br /><p>Thanks skingaby,</p><div>&nbsp;</div><div>We will take a look at it.</div><div>&nbsp;</div><div>Regards,</div><div>&nbsp;&nbsp; Silvio.</div>]]>
   </description>
   <pubDate>Wed, 14 Mar 2012 13:54:16 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12985#12985</guid>
  </item> 
  <item>
   <title>Metadata files not found :   Oh yeah. I forgot to mention:...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12983#12983</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 14-Mar-2012 at 1:18pm<br /><br />Oh yeah.&nbsp; I forgot to mention:&nbsp; I have uninstalled and reinstalled Devforce 6.1.6.&nbsp; I have made sure the EDM Extension is present.<div>Also, I am attaching some source code for the projects that work and that don't.&nbsp; Open the ClassLibrary1.sln to load all 6 projects.&nbsp; The EdiTransactions work, the MeasurementPPAs don't.</div><div><a href="uploads/308/ClassLibrary1.zip" target="_blank">uploads/308/ClassLibrary1.zip</a></div>]]>
   </description>
   <pubDate>Wed, 14 Mar 2012 13:18:10 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12983#12983</guid>
  </item> 
  <item>
   <title>Metadata files not found :   So we upgraded to 6.1.6 for...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12982#12982</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 3336<br /><strong>Posted:</strong> 14-Mar-2012 at 12:50pm<br /><br />So we upgraded to 6.1.6 for Silverlight a couple of days ago.&nbsp; I have a model project pair (one server project and one SL project).&nbsp; However, when I run the module that refers to the model, I get this error:<div>&nbsp;</div><div>System.InvalidOperationException: Entity Server Error in: MeasurementPpaRepository ---&gt; IdeaBlade.EntityModel.EntityServerException: Key 'MeasurementPpaDataSourceKey': The model's metadata artifact files (csdl, msl, ssdl) are either invalid or could not be found, either as resources in an assembly or loose in the output directory.&nbsp; Perhaps you have multiple assemblies containing the same metadata. Check the connection string for key 'MeasurementPpaDataSourceKey', which says the artifact filenames are MeasurementPpaDataSourceKey.csdl, MeasurementPpaDataSourceKey.ssdl, and MeasurementPpaDataSourceKey.msl. Do these names match the actual artifact filenames? All three root names (e.g., 'MeasurementPpaDataSourceKey') should be the same and match the edmx filename unless you changed them deliberately.<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.RemoteEntityServerProxyBase.CheckConnection(Exception pException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecFunc&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecuteOnServer&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.Fetch(SessionBundle bundle, IEntityQuerySurrogate query)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityManager.AsyncFetchWorker(AsyncEventArgs asyncArgs)<br>&nbsp;&nbsp; --- End of inner exception stack trace ---<br>&nbsp;&nbsp; at Png.GcsAg.Infrastructure.ViewUtility.ViewModel.RepositoryEntityServerError(Object sender, EntityServerErrorEventArgs e)<br>&nbsp;&nbsp; at Png.GcsAg.Infrastructure.Persistence.Repository.PersistenceContextEntityServerError(Object sender, EntityServerErrorEventArgs e)<br>&nbsp;&nbsp; at Png.GcsAg.Infrastructure.Persistence.PersistenceContext.EntityManagerEntityServerError(Object sender, EntityServerErrorEventArgs e)</div><div>&nbsp;</div><div>{EntityServerException: Key 'MeasurementPpaDataSourceKey': The model's metadata artifact files (csdl, msl, ssdl) are either invalid or could not be found, either as resources in an assembly or loose in the output directory.&nbsp; Perhaps you have multiple assemblies containing the same metadata. Check the connection string for key 'MeasurementPpaDataSourceKey', which says the artifact filenames are MeasurementPpaDataSourceKey.csdl, MeasurementPpaDataSourceKey.ssdl, and MeasurementPpaDataSourceKey.msl. Do these names match the actual artifact filenames? All three root names (e.g., 'MeasurementPpaDataSourceKey') should be the same and match the edmx filename unless you changed them deliberately. ---&gt; IdeaBlade.EntityModel.EntityServerException: The model's metadata artifact files (csdl, msl, ssdl) are either invalid or could not be found, either as resources in an assembly or loose in the output directory.&nbsp; Perhaps you have multiple assemblies containing the same metadata. Check the connection string for key 'MeasurementPpaDataSourceKey', which says the artifact filenames are MeasurementPpaDataSourceKey.csdl, MeasurementPpaDataSourceKey.ssdl, and MeasurementPpaDataSourceKey.msl. Do these names match the actual artifact filenames? All three root names (e.g., 'MeasurementPpaDataSourceKey') should be the same and match the edmx filename unless you changed them deliberately. ---&gt; System.Data.MetadataException: Unable to load the specified metadata resource.<br>&nbsp;&nbsp; at System.Data.Metadata.Edm.MetadataArtifactLoaderCompositeResource.LoadResources(String assemblyName, String resourceName, ICollection`1 uriRegistry, MetadataArtifactAssemblyResolver resolver)<br>&nbsp;&nbsp; at System.Data.Metadata.Edm.MetadataArtifactLoaderCompositeResource.CreateResourceLoader(String path, ExtensionCheck extensionCheck, String validExtension, ICollection`1 uriRegistry, MetadataArtifactAssemblyResolver resolver)<br>&nbsp;&nbsp; at System.Data.Metadata.Edm.MetadataArtifactLoader.Create(String path, ExtensionCheck extensionCheck, String validExtension, ICollection`1 uriRegistry, MetadataArtifactAssemblyResolver resolver)<br>&nbsp;&nbsp; at System.Data.Metadata.Edm.MetadataCache.SplitPaths(String paths)<br>&nbsp;&nbsp; at System.Data.Common.Utils.Memoizer`2.&lt;&gt;c__DisplayClass2.&lt;Evaluate&gt;b__0()<br>&nbsp;&nbsp; at System.Data.Common.Utils.Memoizer`2.Result.GetValue()<br>&nbsp;&nbsp; at System.Data.Common.Utils.Memoizer`2.Evaluate(TArg arg)<br>&nbsp;&nbsp; at System.Data.EntityClient.EntityConnection.GetMetadataWorkspace(Boolean initializeAllCollections)<br>&nbsp;&nbsp; at System.Data.Objects.ObjectContext.RetrieveMetadataWorkspaceFromConnection()<br>&nbsp;&nbsp; at System.Data.Objects.ObjectContext..ctor(EntityConnection connection, Boolean isConnectionConstructor)<br>&nbsp;&nbsp; at System.Data.Objects.ObjectContext..ctor(String connectionString)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.Edm.EdmKey.CreateObjectContext()<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.Edm.EdmKey.CreateContext()<br>&nbsp;&nbsp; --- End of inner exception stack trace ---<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.Edm.EdmKey.CreateContext()<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.Edm.EdmKey.Initialize()<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.Edm.EdmKey.CreateContext()<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.RemoteEntityServerProxyBase.CheckConnection(Exception pException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecFunc&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecuteOnServer&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.Fetch(SessionBundle bundle, IEntityQuerySurrogate query)<br>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityManager.AsyncFetchWorker(AsyncEventArgs asyncArgs)}</div><div>&nbsp;</div><div>Do you have any suggestions for where I should be looking to troubleshoot this error?&nbsp; </div><div>I have two model project pairs and two modules.&nbsp; The 6.1.5 model projects and module work just fine (with the 6.1.6 dll's).&nbsp; The 6.1.6 model projects and module complain about the metadata.</div><div>Any help would be appreciated.&nbsp; </div><div>Thanks,</div><div>Simon</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Wed, 14 Mar 2012 12:50:40 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3336&amp;PID=12982#12982</guid>
  </item> 
 </channel>
</rss>