<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>azuretoolkit Issue Tracker Rss Feed</title><link>http://azuretoolkit.codeplex.com/WorkItem/List.aspx</link><description>azuretoolkit Issue Tracker Rss Description</description><item><title>Commented Issue: GetAll(Expression&lt;Func&lt;T, bool&gt;&gt; predicate) not working for me [2]</title><link>http://azuretoolkit.codeplex.com/workitem/2</link><description>When using GetAll with a predicate I get a message telling me something to the effect that &amp;#34;take cannot be used before filter&amp;#34;. I guess this makes sense as the first thing I would want to do is filter and then issue a take on what is left. For my case &amp;#40;&amp;#60; 100 table rows&amp;#41; I changed the code and commented out the take line. After that no problem but it&amp;#39;s a temporary fix. Here is the change I made&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47; query &amp;#61; query.Take&amp;#40;take&amp;#41; as DataServiceQuery&amp;#60;T&amp;#62;&amp;#59;&lt;br /&gt;&lt;br /&gt;Hope my explanation makes sense. The problem is very easily repeated every single time I use GetAll with a predicate. &lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Comments: Hello&amp;#10;You can fixe it like this&amp;#58;&amp;#10;do&amp;#10;      &amp;#123;&amp;#10;        var query &amp;#61; context.CreateQuery&amp;#60;T&amp;#62;&amp;#40;TableName&amp;#41;&amp;#59;&amp;#10;        &amp;#47;&amp;#47;Modified moved below to allow to get predicate&amp;#10;        &amp;#47;&amp;#47;query &amp;#61; query.Take&amp;#40;take&amp;#41; as DataServiceQuery&amp;#60;T&amp;#62;&amp;#59;&amp;#10;        if &amp;#40;predicate &amp;#33;&amp;#61; null&amp;#41;&amp;#10;        &amp;#123;&amp;#10;          query &amp;#61; query.Where&amp;#40;predicate&amp;#41; as DataServiceQuery&amp;#60;T&amp;#62;&amp;#59;&amp;#10;        &amp;#125;&amp;#10;        if &amp;#40;continuationToken &amp;#33;&amp;#61; null&amp;#41;&amp;#10;        &amp;#123;&amp;#10;          query &amp;#61; query.AddQueryOption&amp;#40;&amp;#34;NextPartitionKey&amp;#34;, continuationToken.PartitionKey&amp;#41;&amp;#59;&amp;#10;          if &amp;#40;continuationToken.RowKey &amp;#33;&amp;#61; null&amp;#41;&amp;#10;          &amp;#123;&amp;#10;            query &amp;#61; query.AddQueryOption&amp;#40;&amp;#34;NextRowKey&amp;#34;, continuationToken.RowKey&amp;#41;&amp;#59;&amp;#10;          &amp;#125;&amp;#10;        &amp;#125;&amp;#10;        &amp;#47;&amp;#47;Modified to allow to get predicate&amp;#10;        query &amp;#61; query.Take&amp;#40;take&amp;#41; as DataServiceQuery&amp;#60;T&amp;#62;&amp;#59;&amp;#10;        var response &amp;#61; query.Execute&amp;#40;&amp;#41; as QueryOperationResponse&amp;#59;&amp;#10;        foreach &amp;#40;T row in response&amp;#41;&amp;#10;        &amp;#123;&amp;#10;          rows.Add&amp;#40;row&amp;#41;&amp;#59;&amp;#10;        &amp;#125;&amp;#10;        if &amp;#40;response.Headers.ContainsKey&amp;#40;&amp;#34;x-ms-continuation-NextPartitionKey&amp;#34;&amp;#41;&amp;#41;&amp;#10;        &amp;#123;&amp;#10;          continuationToken &amp;#61; new ListRowsContinuationToken&amp;#40;&amp;#41;&amp;#59;&amp;#10;          continuationToken.PartitionKey &amp;#61; response.Headers&amp;#91;&amp;#34;x-ms-continuation-NextPartitionKey&amp;#34;&amp;#93;&amp;#59;&amp;#10;          if &amp;#40;response.Headers.ContainsKey&amp;#40;&amp;#34;x-ms-continuation-NextRowKey&amp;#34;&amp;#41;&amp;#41;&amp;#10;          &amp;#123;&amp;#10;            continuationToken.RowKey &amp;#61; response.Headers&amp;#91;&amp;#34;x-ms-continuation-NextRowKey&amp;#34;&amp;#93;&amp;#59;&amp;#10;          &amp;#125;&amp;#10;        &amp;#125;&amp;#10;        else&amp;#10;        &amp;#123;&amp;#10;          continuationToken &amp;#61; null&amp;#59;&amp;#10;        &amp;#125;&amp;#10;      &amp;#125;</description><author>youhou</author><pubDate>Thu, 28 Apr 2011 07:34:55 GMT</pubDate><guid isPermaLink="false">Commented Issue: GetAll(Expression&lt;Func&lt;T, bool&gt;&gt; predicate) not working for me [2] 20110428073455A</guid></item><item><title>Created Issue: Adding the toolkit gives me 381 warning messages in VS2010 [3]</title><link>http://azuretoolkit.codeplex.com/workitem/3</link><description>Warning messages such as&amp;#58; Warning&amp;#9;28&amp;#9;Missing XML comment for publicly visible type or member &amp;#39;AzureToolkit.Engine.JobSettings.CronSchedule&amp;#39;&amp;#9;C&amp;#58;&amp;#92;Code E&amp;#92;&amp;#92;AzureToolkit&amp;#92;Engine&amp;#92;JobSettings.cs&amp;#9;8&amp;#9;23&amp;#9;AzureToolkit&lt;br /&gt;&lt;br /&gt;Can you make some changes to the code or add suppression so the warnings don&amp;#39;t show. I guess most of these warning are not needed.&lt;br /&gt;&lt;br /&gt;</description><author>RichardAlan</author><pubDate>Sun, 17 Apr 2011 14:22:13 GMT</pubDate><guid isPermaLink="false">Created Issue: Adding the toolkit gives me 381 warning messages in VS2010 [3] 20110417022213P</guid></item><item><title>Created Issue: GetAll(Expression&lt;Func&lt;T, bool&gt;&gt; predicate) not working for me [2]</title><link>http://azuretoolkit.codeplex.com/workitem/2</link><description>When using GetAll with a predicate I get a message telling me something to the effect that &amp;#34;take cannot be used before filter&amp;#34;. I guess this makes sense as the first thing I would want to do is filter and then issue a take on what is left. For my case &amp;#40;&amp;#60; 100 table rows&amp;#41; I changed the code and commented out the take line. After that no problem but it&amp;#39;s a temporary fix. Here is the change I made&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47; query &amp;#61; query.Take&amp;#40;take&amp;#41; as DataServiceQuery&amp;#60;T&amp;#62;&amp;#59;&lt;br /&gt;&lt;br /&gt;Hope my explanation makes sense. The problem is very easily repeated every single time I use GetAll with a predicate. &lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;</description><author>RichardAlan</author><pubDate>Fri, 01 Apr 2011 05:24:47 GMT</pubDate><guid isPermaLink="false">Created Issue: GetAll(Expression&lt;Func&lt;T, bool&gt;&gt; predicate) not working for me [2] 20110401052447A</guid></item><item><title>Created Feature: Add ToLower on all container names internally [1]</title><link>http://azuretoolkit.codeplex.com/workitem/1</link><description>All blob and queue names must be lowercase. The framework should lower all names internally.&lt;br /&gt;</description><author>ntotten</author><pubDate>Wed, 15 Dec 2010 20:17:02 GMT</pubDate><guid isPermaLink="false">Created Feature: Add ToLower on all container names internally [1] 20101215081702P</guid></item></channel></rss>