<?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 : Error Building Simple silverlight app with 1 entity</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2012 : Error Building Simple silverlight app with 1 entity</description>
  <pubDate>Thu, 23 Apr 2026 17:55:11 -700</pubDate>
  <lastBuildDate>Thu, 01 Nov 2012 16:42:17 -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=3759</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>Error Building Simple silverlight app with 1 entity :    Hi KitKat,It looks like...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15049#15049</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 3759<br /><strong>Posted:</strong> 01-Nov-2012 at 4:42pm<br /><br />Hi KitKat,<div>&nbsp;</div><div>It looks like we've got a problem with the EntityFramework 6.0.0-alpha1 package.&nbsp; We don't currently restrict the EF version, but it looks like we'll have to since we're not working with 6.0.0.&nbsp; </div><div>&nbsp;</div><div>For now, you'll have to remove the EntityFramework.dll reference and remove the package from packages.config, then install the stable version of EntityFramework.</div><div>&nbsp;</div><div>Thanks for reporting this.</div><div>&nbsp;</div><div>One more thing - this problem is fixed in version 7.0.2, which will be available tomorrow.</div><span style="font-size:10px"><br /><br />Edited by kimj - 01-Nov-2012 at 5:01pm</span>]]>
   </description>
   <pubDate>Thu, 01 Nov 2012 16:42:17 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15049#15049</guid>
  </item> 
  <item>
   <title>Error Building Simple silverlight app with 1 entity : Here are the project files </title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15048#15048</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1570" rel="nofollow">KitKat</a><br /><strong>Subject:</strong> 3759<br /><strong>Posted:</strong> 01-Nov-2012 at 2:58pm<br /><br />Here are the project <a href="uploads/1570/SilverlightApplicati&#111;n8.zip" target="_blank">files</a>]]>
   </description>
   <pubDate>Thu, 01 Nov 2012 14:58:54 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15048#15048</guid>
  </item> 
  <item>
   <title>Error Building Simple silverlight app with 1 entity : using System;using System.Comp...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15046#15046</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1570" rel="nofollow">KitKat</a><br /><strong>Subject:</strong> 3759<br /><strong>Posted:</strong> 01-Nov-2012 at 2:56pm<br /><br /><div>using System;</div><div>using System.ComponentModel.DataAnnotations;</div><div>using System.ComponentModel.DataAnnotations.Schema;</div><div>using IdeaBlade.Aop;</div><div><br></div><div>namespace SilverlightApplication8.Web</div><div>{</div><div>&nbsp; &nbsp; &#091;ProvideEntityAspect&#093;</div><div>&nbsp; &nbsp; public class Person</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public int PersonId { get; set; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &#091;Required, StringLength(100)&#093;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public string FirstName { get; set; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &#091;Required, StringLength(100)&#093;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public string LastName { get; set; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &#091;NotMapped&#093;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public string FullName</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; get { return String.Format("{0} {1}", FirstName, LastName); }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; }</div><div>}</div><div><br></div><div><div>using System.Data.Entity;</div><div>using IdeaBlade.EntityModel;</div><div><br></div><div>namespace SilverlightApplication8.Web</div><div>{</div><div>&nbsp; &nbsp; &#091;DataSourceKeyName("TestDbDevForce")&#093;</div><div>&nbsp; &nbsp; public class TestDbContext : DbContext</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public DbSet&lt;Person&gt; Persons { get; set; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; protected override void OnModelCreating(DbModelBuilder modelBuilder)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Call your partial methods here.</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Method does not have to be declared in child file if not used.</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; modelBuilder.Ignore&lt;EntityAspect&gt;();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; public TestDbContext(string connection = null) : base(connection){}</div><div><br></div><div>&nbsp; &nbsp; }</div><div>}</div></div><div><br></div>]]>
   </description>
   <pubDate>Thu, 01 Nov 2012 14:56:12 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15046#15046</guid>
  </item> 
  <item>
   <title>Error Building Simple silverlight app with 1 entity : I am getting this error building...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15044#15044</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1570" rel="nofollow">KitKat</a><br /><strong>Subject:</strong> 3759<br /><strong>Posted:</strong> 01-Nov-2012 at 2:24pm<br /><br />I am getting this error building the web side of a silverlight project. &nbsp;All packages are installed via nuGet. &nbsp;Please help.<div><br></div><div><div>BuildVersionIncrement: Pre-build process : Completed</div><div>1&gt;------ Build started: Project: SilverlightApplication8.Web, Configuration: Debug Any CPU ------</div><div>1&gt;Build started 11/1/2012 5:13:23 PM.</div><div>1&gt;PostSharp21InspectReferences:</div><div>1&gt; &nbsp;Detected reference to 'PostSharp'.</div><div>1&gt;GenerateTargetFrameworkMonikerAttribute:</div><div>1&gt;Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.</div><div>1&gt;CoreCompile:</div><div>1&gt;Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.</div><div>1&gt;CopyFilesToOutputDirectory:</div><div>1&gt; &nbsp;SilverlightApplication8.Web -&gt; C:\TestProjects\SilverlightApplication8\SilverlightApplication8.Web\bin\SilverlightApplication8.Web.dll</div><div>1&gt;DevForceEntityModelMetadataDeploy:</div><div>1&gt; &nbsp;In EntityModelMetadataDeploy. &nbsp;Parms: &nbsp;Assembly='C:\TestProjects\SilverlightApplication8\SilverlightApplication8.Web\bin\SilverlightApplication8.Web.dll', TargetFolder='C:\TestProjects\SilverlightApplication8\SilverlightApplication8.Web'</div><div>1&gt; &nbsp;IdeaBlade.VisualStudio.Build.Tasks, Version=7.0.1.0, Culture=neutral, PublicKeyToken=287b5094865421c0</div><div>1&gt; &nbsp;Trying model metadata discovery for C:\TestProjects\SilverlightApplication8\SilverlightApplication8.Web\bin\SilverlightApplication8.Web.dll</div><div>1&gt; &nbsp;Creating metadata from DbContext 'TestDbContext'</div><div>1&gt; &nbsp;Searching for connectionString named 'TestDbDevForce': found</div><div>1&gt;C:\TestProjects\SilverlightApplication8\packages\IdeaBlade.DevForce.Aop.7.0.1-beta1\tools\IdeaBlade.DevForce.Common.targets(110,5): error : An error occurred during metadata generation and a metadata file could not be created. &nbsp;Error: The best overloaded method match for 'IdeaBlade.EntityModel.Edm.EntityMetadataBuilder.BuildEntityModelMetadata(System.Data.Metadata.Edm.MetadataWorkspace)' has some invalid arguments</div><div>1&gt; &nbsp;EntityModelMetadataDeploy: No metadata files generated.</div><div>1&gt;</div><div>1&gt;Build FAILED.</div><div>1&gt;</div><div>1&gt;Time Elapsed 00:00:02.84</div><div>========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========</div><div>BuildVersionIncrement: Post-build process : Completed</div><div><br></div><div>BUILD PARTIALLY FAILED (status by CodeSMART)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ¯¯¯¯¯¯</div><div>&nbsp; &nbsp; Build failed for the following project(s):</div><div>&nbsp; &nbsp; &nbsp; &nbsp; SilverlightApplication8.Web</div><div><br></div><div>Build Summary</div><div>-------------</div><div>00:02.960 - Failed &nbsp;- Debug Any CPU - SilverlightApplication8.Web\SilverlightApplication8.Web.csproj</div><div><br></div><div>Total build time: 00:00.000</div><div><br></div><div>========== Build: 0 succeeded or up-to-date, 1 failed, 1 skipped ==========</div></div><div><br></div><div><br></div><div>I have one entity defined and a DbContext as the full model I plan to use will require the FluentAPI.</div><div><br></div><div>Please Help!</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Thu, 01 Nov 2012 14:24:09 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3759&amp;PID=15044#15044</guid>
  </item> 
 </channel>
</rss>