<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Partial queries with optional&#060;T&#062;	</title>
	<atom:link href="https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/</link>
	<description>Jonathan Boccara&#039;s blog</description>
	<lastBuildDate>Thu, 02 Jan 2020 16:30:15 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>
	<item>
		<title>
		By: Vladislav Kaplan		</title>
		<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-176</link>

		<dc:creator><![CDATA[Vladislav Kaplan]]></dc:creator>
		<pubDate>Thu, 16 Mar 2017 10:04:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=93#comment-176</guid>

					<description><![CDATA[Thank you for the article]]></description>
			<content:encoded><![CDATA[<p>Thank you for the article</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-55</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Tue, 10 Jan 2017 21:10:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=93#comment-55</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-54&quot;&gt;Nemanja Boric&lt;/a&gt;.

Yep good idea, it does make code simpler. I reworked the article to include it. Thanks Nemanja!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-54">Nemanja Boric</a>.</p>
<p>Yep good idea, it does make code simpler. I reworked the article to include it. Thanks Nemanja!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nemanja Boric		</title>
		<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-54</link>

		<dc:creator><![CDATA[Nemanja Boric]]></dc:creator>
		<pubDate>Tue, 10 Jan 2017 12:30:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=93#comment-54</guid>

					<description><![CDATA[Easy way to get out of `addFieldToQuery` is to make the first part of the query

```
SELECT * FROM persons WHERE 1=1
```

and then you don&#039;t need to threat the first entry as a special case.]]></description>
			<content:encoded><![CDATA[<p>Easy way to get out of `addFieldToQuery` is to make the first part of the query</p>
<p>&#8220;`<br />
SELECT * FROM persons WHERE 1=1<br />
&#8220;`</p>
<p>and then you don&#8217;t need to threat the first entry as a special case.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-39</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Thu, 05 Jan 2017 05:57:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=93#comment-39</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-38&quot;&gt;kaduim&lt;/a&gt;.

Absolutely. Thanks for pointing this out, this is now corrected.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-38">kaduim</a>.</p>
<p>Absolutely. Thanks for pointing this out, this is now corrected.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kaduim		</title>
		<link>https://www.fluentcpp.com/2016/12/01/partial-queries-with-optionalt/#comment-38</link>

		<dc:creator><![CDATA[kaduim]]></dc:creator>
		<pubDate>Wed, 04 Jan 2017 10:11:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=93#comment-38</guid>

					<description><![CDATA[Hello.

There is typo in:

std::string gender = &quot;male&quot;;
std::string nationality = &quot;&quot;;
std::string eyeColor = &quot;blue&quot;;
buildQuery(gender, boost::none, eyeColor);

Last line should be:

buildQuery(gender, nationality, eyeColor);]]></description>
			<content:encoded><![CDATA[<p>Hello.</p>
<p>There is typo in:</p>
<p>std::string gender = &#8220;male&#8221;;<br />
std::string nationality = &#8220;&#8221;;<br />
std::string eyeColor = &#8220;blue&#8221;;<br />
buildQuery(gender, boost::none, eyeColor);</p>
<p>Last line should be:</p>
<p>buildQuery(gender, nationality, eyeColor);</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
