<?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 : Community Forum</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : Community Forum : Last 30 Posts</description>
  <pubDate>Tue, 12 May 2026 18:03:09 -700</pubDate>
  <lastBuildDate>Wed, 21 May 2014 10:47:40 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_topic_feed.asp?FID=50</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>Community Forum : DevForce &quot;Cocktail&quot;  moved to Stackoverflow</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4700&amp;PID=17552#17552</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=21" rel="nofollow">IdeaBlade</a><br /><strong>Subject:</strong> DevForce &quot;Cocktail&quot;  moved to Stackoverflow<br /><strong>Posted:</strong> 21-May-2014 at 10:47am<br /><br />We've moved free community support for DevForce "Cocktail" to StackOverflow.com. By moving to <a href="http://stackoverflow.com/questi&#111;ns/tagged/devforce" target="_blank">StackOverflow</a>,one of the largest communities of developers on the internet will be able tobenefit from your questions—and you from their answers. <br><br>You can still use all the great content in this forum. If you don’t find youranswer here then head on over to StackOverflow to post your question using the <a href="http://stackoverflow.com/questi&#111;ns/tagged/devforce" target="_blank">DevForce</a>tag.]]>
   </description>
   <pubDate>Wed, 21 May 2014 10:47:40 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4700&amp;PID=17552#17552</guid>
  </item> 
  <item>
   <title>Community Forum : Get access to the MEF catalog</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4699&amp;PID=17551#17551</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Get access to the MEF catalog<br /><strong>Posted:</strong> 20-May-2014 at 12:04pm<br /><br />As with every dependency, you just need to make the catalog available through MEF so you can inject it where you need it. Here's how you can accomplish this.<div><br></div><div><div>&nbsp; &nbsp; public class AppBootstrapper : CocktailMefBootstrapper&lt;MainViewModel&gt;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; private ComposablePartCatalog _catalog;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; protected override ComposablePartCatalog PrepareCompositionCatalog()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Hang on to the catalog</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return _catalog = base.PrepareCompositionCatalog();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; protected override void PrepareCompositionContainer(CompositionBatch batch)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; base.PrepareCompositionContainer(batch);</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Add catalog to the MEF container</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; batch.AddExportedValue(_catalog);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; &#091;Export&#093;</div><div>&nbsp; &nbsp; public class MainViewModel : Screen</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &#091;ImportingConstructor&#093;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; public MainViewModel(ComposablePartCatalog catalog)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div></div>]]>
   </description>
   <pubDate>Tue, 20 May 2014 12:04:13 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4699&amp;PID=17551#17551</guid>
  </item> 
  <item>
   <title>Community Forum : Get access to the MEF catalog</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4699&amp;PID=17550#17550</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1623" rel="nofollow">kdev</a><br /><strong>Subject:</strong> Get access to the MEF catalog<br /><strong>Posted:</strong> 07-May-2014 at 7:52am<br /><br />Hi,<div><br></div><div>I have a scenario with cocktail where I need to get access to the Mef Catalog to query the Part property (http://stackoverflow.com/questions/23497474/how-to-know-the-original-type-of-a-class-exported-as-an-interface-in-mef).</div><div><br></div><div>I need this information to implement the TargetGuard method of the INavigator. I check if an attribute decorate (or not) the class to allow (or refuse) the navigation.</div><div><br></div><div>I understand why it's not possible to publish this property as it's MEF dependant and the&nbsp;ICompositionProvider is "universal" for all type of IoC.&nbsp;<span style="line-height: 1.4;">But it's in some case really annoying to not have access to the catalog.</span></div><div>I also know I could write my own implementation of MEF and give it to cocktail but it looks it's a lot of work (need to redo the bootstrapper too) for just a small thing (in my point of view).</div><div><br></div><div>Could it be possible to add a class (dedicated to MEF) on Cocktail which, like EntityAspect.Wrap(), could wrap the cocktail MEF implementation and publish the Catalog ?</div><div><br></div><div>Right now I have a workaround but it's far to be clean. in the TargetGuard method, I create a new AggregateCatalog and fill it with the loaded assemblies. It would be nicer to use the catalog present in Cocktail</div><div><br></div><span style="font-size:10px"><br /><br />Edited by kdev - 07-May-2014 at 7:55am</span>]]>
   </description>
   <pubDate>Wed, 07 May 2014 07:52:00 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4699&amp;PID=17550#17550</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17469#17469</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 09-Apr-2014 at 1:08pm<br /><br />You are welcome. I just realized that I need to brush up on my regex myself :-). The correct expression that would match a dot after System would look like this: "^System\..*"]]>
   </description>
   <pubDate>Wed, 09 Apr 2014 13:08:48 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17469#17469</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17468#17468</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1009" rel="nofollow">JohnBloom</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 09-Apr-2014 at 1:06pm<br /><br />Ah you are right. We adopted the&nbsp;<span style=": rgb251, 251, 253;">Company.AssemblyName.dll on our backend code I just never changed the front end. Thanks for the help!&nbsp;</span>]]>
   </description>
   <pubDate>Wed, 09 Apr 2014 13:06:55 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17468#17468</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17467#17467</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 09-Apr-2014 at 1:02pm<br /><br />The IgnorePatterns are regular expressions. "^System.*" matches anything starting with the word System. The dot means any character. The expression you are thinking of is "^System&#091;.&#093;.*" which will look for an actual dot followed by anything after the dot.<div><br></div><div>The IgnorePatterns are not new, but we've added new patterns over the years. You can also modify the list of ignore pattern. The discovery mechanism in DevForce is documented here:&nbsp;http://drc.ideablade.com/devforce-2012/bin/view/Documentation/discovery</div><div><br></div><div>We recommend for many reasons to adopt an assembly naming scheme that puts your own assemblies into its own namespace. Something like Company.AssemblyName.dll.</div>]]>
   </description>
   <pubDate>Wed, 09 Apr 2014 13:02:11 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17467#17467</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17465#17465</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1009" rel="nofollow">JohnBloom</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 09-Apr-2014 at 12:31pm<br /><br />But my project was named SystemModule so the &nbsp;"^System.*" pattern shouldn't hit because there is no "." after System. That is why I was confused and didn't look into name at first. Also this was in a recent update, is that ignore list a new thing? I ended up going with SysModule but I still think that SystemModule should have worked.]]>
   </description>
   <pubDate>Wed, 09 Apr 2014 12:31:04 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17465#17465</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17464#17464</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 09-Apr-2014 at 11:59am<br /><br />John,<div>Not a bug, but following are the default IgnorePatterns to make sure we are not probing .NET system assemblies. If you name your assembly System.dll it's being ignored, because it machtes the "^System.*" pattern.</div><div><br></div><div><div>&nbsp; &nbsp; private static List&lt;string&gt; BuildIgnoreList() {</div><div>&nbsp; &nbsp; &nbsp; return new List&lt;string&gt;(new&#091;&#093; {</div><div>&nbsp; &nbsp; &nbsp; "*.exe.config",</div><div>&nbsp; &nbsp; &nbsp; "*.dll.config",</div><div>&nbsp; &nbsp; &nbsp; "^IdeaBlade.*",</div><div>&nbsp; &nbsp; &nbsp; "^System.*",</div><div>&nbsp; &nbsp; &nbsp; "^Microsoft.*",</div><div>&nbsp; &nbsp; &nbsp; "*.vshost.*",</div><div>&nbsp; &nbsp; &nbsp; "^mscorlib.*",</div><div>&nbsp; &nbsp; &nbsp; "^WindowsBase.*",</div><div>&nbsp; &nbsp; &nbsp; "^PresentationCore.*",</div><div>&nbsp; &nbsp; &nbsp; "^PresentationFramework.*",</div><div>&nbsp; &nbsp; &nbsp; "^PostSharp.",</div><div>&nbsp; &nbsp; &nbsp; "^EntityFramework.",</div><div>&nbsp; &nbsp; &nbsp; "^Intersoft.*",</div><div>&nbsp; &nbsp; &nbsp; "^Telerik.*",</div><div>&nbsp; &nbsp; &nbsp; "^DevExpress.*",</div><div>&nbsp; &nbsp; &nbsp; "^Infragistics*", &nbsp;// Will be *2, 3, or 4. &nbsp;SL assemblies are InfragisticsSLn. &nbsp;WPF are now InfragisticsWPFn.</div><div>&nbsp; &nbsp; &nbsp; "^WPFToolkit.*",</div><div>&nbsp; &nbsp; &nbsp; "^Syncfusion.*",</div><div>&nbsp; &nbsp; &nbsp; "^Janus.*", &nbsp;</div><div>&nbsp; &nbsp; &nbsp; "^C1.*",&nbsp;</div><div>&nbsp; &nbsp; &nbsp; "^PerpetuumSoft.*",&nbsp;</div><div>&nbsp; &nbsp; &nbsp; "^Xceed.*",</div><div>&nbsp; &nbsp; &nbsp; });</div><div>&nbsp; &nbsp; }</div></div>]]>
   </description>
   <pubDate>Wed, 09 Apr 2014 11:59:27 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17464#17464</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17460#17460</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1009" rel="nofollow">JohnBloom</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 08-Apr-2014 at 2:44pm<br /><br />Ok yes there is a bug somewhere. I renamed the module to JohnnyModule and everything worked. Any idea how I can fix this or am I going to have to go with my JohnnyModule?]]>
   </description>
   <pubDate>Tue, 08 Apr 2014 14:44:04 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17460#17460</guid>
  </item> 
  <item>
   <title>Community Forum : Getting, &quot;No new content found in dynamic xap&quot; after updating</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17459#17459</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1009" rel="nofollow">JohnBloom</a><br /><strong>Subject:</strong> Getting, &quot;No new content found in dynamic xap&quot; after updating<br /><strong>Posted:</strong> 08-Apr-2014 at 2:37pm<br /><br />Recently we updated to the latest version of cocktail and devforce. Everything went fine and the program starts. However, one of our xaps is not being loaded into the catalog and so none of the exports are being exported by MEF. Here is a piece of the output log:<div><br></div><div><div>IdeaBlade.Core.Composition.PartsCatalog:LoadCatalog : No new content found in dynamic xap SystemModule.xap</div><div>8 : 4/8/2014 4:28:46 PM : &nbsp;: IdeaBlade.Core.Composition.PartsCatalog:OnRecomposed : Dynamic content added: SystemModule.xap, loaded without error</div><div>9 : 4/8/2014 4:28:46 PM : &nbsp;: IdeaBlade.Core.Composition.PartsCatalog:LoadAssembliesIntoCatalogs : Assembly 'FillingModule, Version=1.14.4.3, Culture=neutral, PublicKeyToken=null' added to PartsCatalog</div><div>10 : 4/8/2014 4:28:46 PM : &nbsp;: IdeaBlade.Core.Composition.PartsCatalog:LoadCatalog : Probe assemblies found in dynamic content: FillingModule, Version=1.14.4.3, Culture=neutral, PublicKeyToken=null</div><div>11 : 4/8/2014 4:28:46 PM : &nbsp;: IdeaBlade.Core.Composition.PartsCatalog:OnRecomposed : Dynamic content added: FillingModule.xap, loaded without error</div></div><div><br></div><div>notice that the fillingmodule is loading fine but the systemmodule is not. I have tried everything I can think of to see what is different about the SystemModule from the FillingModule and the other 3 that are loading fine and I have not come up with anything. There is no errors in the output and we are not messing with any search patterns as suggested here:</div><div><br></div><div>http://www.ideablade.com/forum/forum_posts.asp?TID=4207&amp;PID=16526&amp;title=ideabladecorecompositionpartscatalogloadcatalog-no-new-content-found-in-dynamic-xap-modules-custommodulexap-exported-viewmodel-instance-not-available#16526</div><div><br></div><div>Any ideas about what could be going wrong? We are using the CocktailMefBootstrapper and pretty much running it with everything as default. I also tried adding it as a reference in the main xap and the MEF still didnt pick it up. My only guess is that it is named System so it gets ignored but other than that I have nothing.</div>]]>
   </description>
   <pubDate>Tue, 08 Apr 2014 14:37:29 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4672&amp;PID=17459#17459</guid>
  </item> 
  <item>
   <title>Community Forum : Cocktail - HappyHour</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17329#17329</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1770" rel="nofollow">WayneMck</a><br /><strong>Subject:</strong> Cocktail - HappyHour<br /><strong>Posted:</strong> 17-Jan-2014 at 2:19pm<br /><br />Thank you for your response, Marcel.<br><br>I using FireFox, Version 26.0; however, I have tested other Silverlight apps without issue. <br><br>A Silverlight page is actually loaded, but it is empty.<br><br>I will try building an app from scratch via the online instructions for the HappyHour application. Hopefully, I will be able to resolve the issue.<br><br>Thanks.<br>]]>
   </description>
   <pubDate>Fri, 17 Jan 2014 14:19:43 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17329#17329</guid>
  </item> 
  <item>
   <title>Community Forum : Cocktail - HappyHour</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17328#17328</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Cocktail - HappyHour<br /><strong>Posted:</strong> 17-Jan-2014 at 9:54am<br /><br />What browser and version are you using? I've seen instances where the browser blocks execution of a local Silverlight application. I don't have access to a machine with VS 2010 anymore and I can't reproduce this issue on any of my current machines running Windows 7/8 and later versions of VS.&nbsp;]]>
   </description>
   <pubDate>Fri, 17 Jan 2014 09:54:02 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17328#17328</guid>
  </item> 
  <item>
   <title>Community Forum : Cocktail - HappyHour</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17326#17326</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1770" rel="nofollow">WayneMck</a><br /><strong>Subject:</strong> Cocktail - HappyHour<br /><strong>Posted:</strong> 16-Jan-2014 at 10:20pm<br /><br />I am running VS 2010 using the Cocktail code Version 1_1_6.<br><br>The first installment of the sample HappyHour application (i.e., 01) compiles, runs, and the page loads correctly for both SL 4 and 5. <br><br>Although the additional projects (i.e., 02 - 08) build and run, the MainPage.xaml is not loaded nor is a Breakpoint tripped in the constructor of the MainPageViewModel.<br><br>I have reviewed the documentation on line but cannot find anything that indicates that I needed to add a Silverlight server, etc.<br><br>A "heads up" is greatly appreciated - thank you.<br>]]>
   </description>
   <pubDate>Thu, 16 Jan 2014 22:20:43 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4637&amp;PID=17326#17326</guid>
  </item> 
  <item>
   <title>Community Forum : Devforce Silverlight License</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4636&amp;PID=17325#17325</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Devforce Silverlight License<br /><strong>Posted:</strong> 16-Jan-2014 at 1:53pm<br /><br />Yes, that will work.]]>
   </description>
   <pubDate>Thu, 16 Jan 2014 13:53:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4636&amp;PID=17325#17325</guid>
  </item> 
  <item>
   <title>Community Forum : Devforce Silverlight License</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4636&amp;PID=17323#17323</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=2723" rel="nofollow">jwb</a><br /><strong>Subject:</strong> Devforce Silverlight License<br /><strong>Posted:</strong> 15-Jan-2014 at 3:42pm<br /><br />If I plan on only developing Silverlight applications, will the Devforce Silverlight license work for Cocktail, or is the Universal license required?<br><span style="font-size:10px"><br /><br />Edited by jwb - 15-Jan-2014 at 3:43pm</span>]]>
   </description>
   <pubDate>Wed, 15 Jan 2014 15:42:47 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4636&amp;PID=17323#17323</guid>
  </item> 
  <item>
   <title>Community Forum : PCL/Xamarin</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4630&amp;PID=17313#17313</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=881" rel="nofollow">jkattestaart</a><br /><strong>Subject:</strong> PCL/Xamarin<br /><strong>Posted:</strong> 23-Dec-2013 at 1:18am<br /><br />Looking at the future and what is going on in the world of .NET development, i would like to share my thoughts.<br />I came across mvvmcross and noticed that they lack the Cocktail part, but support some extra's we miss in cocktail. The ability to develop with PCL for multiple platforms and support for Xamarin.<br />Eisenberg's Micro Caliburn has already developed an alpha to support PCL development, but still lacks the Xamarin part. <br />Xamarin is investing a lot (strongly supported by Microsoft) to make a one-development environment for all platforms including android and IOS.<br />I think a PCL Xamarin-Cocktail version would be an excellent combination to develop  Cocktail LOB programs that work with all platforms. <br />]]>
   </description>
   <pubDate>Mon, 23 Dec 2013 01:18:18 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4630&amp;PID=17313#17313</guid>
  </item> 
  <item>
   <title>Community Forum : Visual studio 2013</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17261#17261</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=881" rel="nofollow">jkattestaart</a><br /><strong>Subject:</strong> Visual studio 2013<br /><strong>Posted:</strong> 26-Nov-2013 at 2:11pm<br /><br />Apperently Kim posted a solution on the devforce forum.<br />DevForce 7.2.2 / PostSharp 3.0.39.x<br /><br />Somehow i still get errors... on the DomainModel.SL en Security.SL<br />Tomorrow i will give it another try<br />]]>
   </description>
   <pubDate>Tue, 26 Nov 2013 14:11:05 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17261#17261</guid>
  </item> 
  <item>
   <title>Community Forum : Visual studio 2013</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17259#17259</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Visual studio 2013<br /><strong>Posted:</strong> 26-Nov-2013 at 6:56am<br /><br />Did you follow the steps documented here to properly install and configure PostSharp 3.0? Also see the additional notes at the bottom regarding the assembly version.&nbsp;<div><br></div><div><a href="http://drc.ideablade.com/devforce-2012/bin/view/&#068;ocumentati&#111;n/postsharp3" target="_blank">http://drc.ideablade.com/devforce-2012/bin/view/Documentation/postsharp3</a></div><div><br></div><div>Also, make sure the PostSharp Extension is properly installed in Visual Studio. PostSharp 3.0 does not work anymore without the extension installed.&nbsp;</div><div><br></div><div><a href="http://visualstudiogallery.msdn.microsoft.com/a058d5d3-e654-43f8-a308-c3bdfdd0be4a" target="_blank">http://visualstudiogallery.msdn.microsoft.com/a058d5d3-e654-43f8-a308-c3bdfdd0be4a</a></div>]]>
   </description>
   <pubDate>Tue, 26 Nov 2013 06:56:58 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17259#17259</guid>
  </item> 
  <item>
   <title>Community Forum : Visual studio 2013</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17256#17256</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=881" rel="nofollow">jkattestaart</a><br /><strong>Subject:</strong> Visual studio 2013<br /><strong>Posted:</strong> 25-Nov-2013 at 11:34pm<br /><br />This weekend i tried to start my project in the visual studio 2013 environment. I started with temphire from coctail 2.4.3.<br />When i loaded the project and restored the packages from nuget.<br />Postsharp was giving me trouble in domainmodel.sl so i tried to update the posharp to the latest version, but this was a problem for devforce.aop (no compatible version)<br /><br />What to do....]]>
   </description>
   <pubDate>Mon, 25 Nov 2013 23:34:33 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4609&amp;PID=17256#17256</guid>
  </item> 
  <item>
   <title>Community Forum : IPager&lt;T&gt;</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17252#17252</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1600" rel="nofollow">cypher</a><br /><strong>Subject:</strong> IPager&lt;T&gt;<br /><strong>Posted:</strong> 21-Nov-2013 at 6:38am<br /><br />Thank you for you answer.<div><br></div><div>We have stripped out the generation of Predicates (Filters on an Entity) and pass it now into a SearchService, that has a Count And IPager Method.</div><div><br></div><div><br></div><div><div>&nbsp; &nbsp;/// &lt;summary&gt;</div><div>&nbsp; &nbsp; /// &nbsp; &nbsp; Predicate to filter the entities.</div><div>&nbsp; &nbsp; /// &lt;/summary&gt;</div><div>&nbsp; &nbsp; /// &lt;typeparam name="T"&gt;the Model/Projection to apply the filter on&lt;/typeparam&gt;</div><div>&nbsp; &nbsp; public interface IPredicate&lt;T&gt; : where T : IEntity</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; #region Public Methods</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; /// &lt;summary&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; /// &nbsp; &nbsp; Applies the filter.</div><div>&nbsp; &nbsp; &nbsp; &nbsp; /// &lt;/summary&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; /// &lt;returns&gt;&lt;/returns&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Expression&lt;Func&lt;T, bool&gt;&gt; ApplyFilter(Expression&lt;Func&lt;T, bool&gt;&gt; filters);</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #endregion</div><div>&nbsp; &nbsp; }</div></div><div><br></div><div>Here is a sample implementation:</div><div><br></div><div><div>&nbsp;public class CustomerFreeTextPredicate : IPredicate&lt;Customer&gt;</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; #region Fields</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; private readonly string _searchTerm;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #endregion</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #region Constructors and Destructors</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; public CustomerFreeTextPredicate(string searchTerm)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _searchTerm = searchTerm;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // &nbsp;DisplayName = string.Format(Resources.CustomerFreeTextPredicate, _searchTerm);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #endregion</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #region IPredicate&lt;Customer&gt; Members</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; public string DisplayName { get; set; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; public Expression&lt;Func&lt;Customer, bool&gt;&gt; ApplyFilter(Expression&lt;Func&lt;Customer, bool&gt;&gt; filter)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; filter.And(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; x =&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (x.CustomerName.Contains(_searchTerm) || x.CustomerNumber.Contains(_searchTerm)) &amp;&amp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; x.LegalEntityRefs.Any(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ler =&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ler.LegalEntityID.Equals(VisUser.LegalEntityId) &amp;&amp; (ler.IsDeleted.HasValue &amp;&amp; ler.IsDeleted.Value == false) &amp;&amp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ler.IsActive.Equals(true)));</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; #endregion</div><div>&nbsp; &nbsp; }</div></div><div><br></div><div><br></div><div>That all works, due to you fantastic implementaion of IRepository&lt;T&gt; !</div>]]>
   </description>
   <pubDate>Thu, 21 Nov 2013 06:38:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17252#17252</guid>
  </item> 
  <item>
   <title>Community Forum : IPager&lt;T&gt;</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17250#17250</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> IPager&lt;T&gt;<br /><strong>Posted:</strong> 20-Nov-2013 at 12:58pm<br /><br />Unfortunately, there is not. EF doesn't provide an inline count. You either have to run a count query or fetch the last page to know how many total records there are. That's just how it is. I recommend not to use the Total properties from IPager&lt;&gt; and instead just make a call to CountAsync() to get the total count and use that to calculate the number of pages etc.&nbsp;]]>
   </description>
   <pubDate>Wed, 20 Nov 2013 12:58:19 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17250#17250</guid>
  </item> 
  <item>
   <title>Community Forum : IPager&lt;T&gt;</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17246#17246</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1600" rel="nofollow">cypher</a><br /><strong>Subject:</strong> IPager&lt;T&gt;<br /><strong>Posted:</strong> 20-Nov-2013 at 7:31am<br /><br /><div>We have started to Implement the IPagerRepository&lt;T&gt; with Cocktail.</div><div><br></div><div>The Implementation is straight forward with the help of you'r Documentation.</div><div><br></div><div>But we are really not happy, that we have to Query the complete last Page, in order to have the TotalAmount initalized in The&nbsp;</div><div>IPager&lt;T&gt;</div><div><br></div><div>We have traced the Querys on SQL Profiler, and found out, that we have to fire three Querys&nbsp;</div><div><br></div><div>1.(Count)&nbsp;</div><div>2. LastPage</div><div>3. FirstPage</div><div><br></div><div>To initialize the IPager&lt;T&gt; to show the Pager.TotalDataSourceItemCount.</div><div><br></div><div>This is really sad, because we would like to query the database for the cound, if the first query starts.</div><div><br></div><div><b>Is there a Way for you to implement the IPager&lt;T&gt; from Cocktail, to have it initialize (Count) if the Pager.TotalDataSourceItemCount == -1 without loading the last page?</b></div><div><br></div><div>We really want to avoid, loading the last page, just to initialize the pager (get the TotalSourceItem)</div><div><br></div><span style="font-size:10px"><br /><br />Edited by cypher - 20-Nov-2013 at 7:36am</span>]]>
   </description>
   <pubDate>Wed, 20 Nov 2013 07:31:54 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4605&amp;PID=17246#17246</guid>
  </item> 
  <item>
   <title>Community Forum : Cocktail 2010 v1.1.6 is now available</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4598&amp;PID=17227#17227</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1005" rel="nofollow">mgood</a><br /><strong>Subject:</strong> Cocktail 2010 v1.1.6 is now available<br /><strong>Posted:</strong> 11-Nov-2013 at 4:30pm<br /><br /><div style=": rgb251, 251, 253;">Version 1.1.6 adds support for DevForce 2010 v6.1.16.&nbsp;</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">The complete release notes can be found here:&nbsp;<a href="http://drc.ideablade.com/xwiki/bin/view/&#068;ocumentati&#111;n/cocktail-116-release-notes" target="_blank">http://drc.ideablade.com/xwiki/bin/view/Documentation/cocktail-116-release-notes</a></div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">NuGet:&nbsp;<a href="http://nuget.org/packages?q=Cocktail&amp;prerelease=&amp;sortOrder=package-created" target="_blank">http://nuget.org/packages?q=Cocktail&amp;prerelease=&amp;sortOrder=package-created</a></div>]]>
   </description>
   <pubDate>Mon, 11 Nov 2013 16:30:10 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4598&amp;PID=17227#17227</guid>
  </item> 
  <item>
   <title>Community Forum : What is the best way to start a new Cocktail Project</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17221#17221</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=579" rel="nofollow">gregweb</a><br /><strong>Subject:</strong> What is the best way to start a new Cocktail Project<br /><strong>Posted:</strong> 08-Nov-2013 at 5:38am<br /><br />A NuGet package for Cocktail like Caliburn.Micro.Start would be awesome.]]>
   </description>
   <pubDate>Fri, 08 Nov 2013 05:38:15 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17221#17221</guid>
  </item> 
  <item>
   <title>Community Forum : What is the best way to start a new Cocktail Project</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17218#17218</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=579" rel="nofollow">gregweb</a><br /><strong>Subject:</strong> What is the best way to start a new Cocktail Project<br /><strong>Posted:</strong> 07-Nov-2013 at 3:10pm<br /><br />Thanks Mark, good idea!]]>
   </description>
   <pubDate>Thu, 07 Nov 2013 15:10:18 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17218#17218</guid>
  </item> 
  <item>
   <title>Community Forum : What is the best way to start a new Cocktail Project</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17216#17216</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=449" rel="nofollow">smi-mark</a><br /><strong>Subject:</strong> What is the best way to start a new Cocktail Project<br /><strong>Posted:</strong> 07-Nov-2013 at 10:57am<br /><br />I find it useful to make a common project with everything you need. We have a large framework, but something as simple as a project with a base bootstrapper, error handlers, anything else you need and then simply referencing that in a new project is a good start.]]>
   </description>
   <pubDate>Thu, 07 Nov 2013 10:57:48 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17216#17216</guid>
  </item> 
  <item>
   <title>Community Forum : What is the best way to start a new Cocktail Project</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17215#17215</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=579" rel="nofollow">gregweb</a><br /><strong>Subject:</strong> What is the best way to start a new Cocktail Project<br /><strong>Posted:</strong> 07-Nov-2013 at 10:23am<br /><br />What is the best way to start a new Cocktail project?  <br /><br />If I start a new DevForce 2012 SL project, and add the Cocktail binaries through NuGet, there is a lot of functionality included in TempHire that needs to be migrated over.<br /><br />If I start with TempHire itself, there is quite a bit that needs to be renamed.<br /><br />I haven't found a happy medium between the two.<br /><br />Greg]]>
   </description>
   <pubDate>Thu, 07 Nov 2013 10:23:24 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4594&amp;PID=17215#17215</guid>
  </item> 
  <item>
   <title>Community Forum : Argument Types Do Not Match</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17210#17210</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> Argument Types Do Not Match<br /><strong>Posted:</strong> 06-Nov-2013 at 10:49am<br /><br /><P>Greg, if you've verified that your client and server are both using the same DevForce and Cocktail versions yet you're still seeing the error, please let us know.</P>]]>
   </description>
   <pubDate>Wed, 06 Nov 2013 10:49:20 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17210#17210</guid>
  </item> 
  <item>
   <title>Community Forum : Argument Types Do Not Match</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17206#17206</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=579" rel="nofollow">gregweb</a><br /><strong>Subject:</strong> Argument Types Do Not Match<br /><strong>Posted:</strong> 05-Nov-2013 at 12:51pm<br /><br />I think it has to do with versioning as I am now getting this same error regularly in other parts of the app with no changes made.  <br /><br />]]>
   </description>
   <pubDate>Tue, 05 Nov 2013 12:51:22 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17206#17206</guid>
  </item> 
  <item>
   <title>Community Forum : Argument Types Do Not Match</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17205#17205</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=579" rel="nofollow">gregweb</a><br /><strong>Subject:</strong> Argument Types Do Not Match<br /><strong>Posted:</strong> 05-Nov-2013 at 11:29am<br /><br />I am getting an error:<br /><br />private async Task&lt;List&lt;WorkspaceEntity&gt;&gt; GetWorkspaces(String key) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var provider = new EntityManagerProvider&lt;ShellEntityManager&gt;();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var uow = new UnitOfWork&lt;WorkspaceEntity&gt;(provider);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var query = await uow.Entities.FindAsync(a=&gt; a.ToolbarKey == key);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return new List&lt;WorkspaceEntity&gt;(query);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br /><br />If I hard code a value for the "key" then it works fine. (It's just a simple string.)<br /><br />This is the error that the BOS writes to the log:<br /><br />Error System.ArgumentException: Argument types do not match at System.Linq.Expressions.Expression.Constant(Object value, Type type) at ....<br /><br />This makes no sense to me.  This project is using 7.1.0]]>
   </description>
   <pubDate>Tue, 05 Nov 2013 11:29:26 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=4590&amp;PID=17205#17205</guid>
  </item> 
 </channel>
</rss>