<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doctrine Archives - Belchamber Web Tools &amp; Code</title>
	<atom:link href="https://tools.belchamber.us/tag/doctrine/feed/" rel="self" type="application/rss+xml" />
	<link>https://tools.belchamber.us/tag/doctrine/</link>
	<description>Free Web Tools, Code Snippets, Tutorials and Conversions</description>
	<lastBuildDate>Wed, 21 Feb 2024 19:05:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">99928718</site>	<item>
		<title>Symfony &#038; Doctrine:  Using table joins with unassociated entities</title>
		<link>https://tools.belchamber.us/symfony-doctrine/</link>
					<comments>https://tools.belchamber.us/symfony-doctrine/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Mon, 25 Jan 2016 15:29:27 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Symfony, Twig, Doctrine & ORMs]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[symfony]]></category>
		<guid isPermaLink="false">https://tools.belchamber.us/?p=995</guid>

					<description><![CDATA[<p>In Symfony using Doctrine, if no association is available for two entities, you can still join them and treat them like they have a relationship.  To do so, you have to use the &#8220;Join: WITH&#8221; method.  Here&#8217;s an example query to illustrate, notice the &#8220;a.user = u.id&#8221;. public function getHistory($users) { $qb = $this-&#62;entityManager-&#62;createQueryBuilder(); $qb [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/symfony-doctrine/">Symfony &#038; Doctrine:  Using table joins with unassociated entities</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/symfony-doctrine/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">995</post-id>	</item>
		<item>
		<title>MySQL &#8220;Where IN&#8221; value contained in list used with setParameter() requires value to be array if using placeholders</title>
		<link>https://tools.belchamber.us/881/</link>
					<comments>https://tools.belchamber.us/881/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Wed, 22 Jul 2015 14:23:25 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Symfony, Twig, Doctrine & ORMs]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[doctrine tips]]></category>
		<category><![CDATA[php developer]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[symfony developer]]></category>
		<category><![CDATA[symfony tips]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=881</guid>

					<description><![CDATA[<p>In normal SQL queries, you can use “WHERE IN” like this: “WHERE id IN (1,5,10)” as in: If the list 1,5,10 &#8220;contains&#8221; the value represented by the value in the &#8220;id&#8221; field. However, if you define a comma delimited string, you can’t simply do this: $idListString=”1,5,10” $dql=”SELECT d FROM Your/Entity d WHERE id IN (:idList)” [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/881/">MySQL &#8220;Where IN&#8221; value contained in list used with setParameter() requires value to be array if using placeholders</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/881/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">881</post-id>	</item>
		<item>
		<title>Changing getArrayResult() to getArray() fixes weird Symfony Doctrine gotcha</title>
		<link>https://tools.belchamber.us/changing-getarrayresult-to-getarray-fixes-weird-symfony-doctrine-gotcha/</link>
					<comments>https://tools.belchamber.us/changing-getarrayresult-to-getarray-fixes-weird-symfony-doctrine-gotcha/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Thu, 18 Jun 2015 15:08:31 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Symfony, Twig, Doctrine & ORMs]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php framework]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[symfony tips]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=855</guid>

					<description><![CDATA[<p>A strange Symfony Doctrine issue got me the other day.  I guess it&#8217;s a lack of clear understanding of how Doctrine hydrates database query results when using getArrayResult() instead of getArray().  It seems that getArrayResult() returns just the first record from your query, no matter how many records the query actually returns but getArray() returns [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/changing-getarrayresult-to-getarray-fixes-weird-symfony-doctrine-gotcha/">Changing getArrayResult() to getArray() fixes weird Symfony Doctrine gotcha</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/changing-getarrayresult-to-getarray-fixes-weird-symfony-doctrine-gotcha/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">855</post-id>	</item>
		<item>
		<title>Laravel PHP Framework:  Basic Explanation of Eloquent, Doctrine and Fluent</title>
		<link>https://tools.belchamber.us/laravel-php-framework-basic-explanation-of-eloquent-doctrine-and-fluent/</link>
					<comments>https://tools.belchamber.us/laravel-php-framework-basic-explanation-of-eloquent-doctrine-and-fluent/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sun, 01 Mar 2015 04:01:59 +0000</pubDate>
				<category><![CDATA[Symfony, Twig, Doctrine & ORMs]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[Eloquent]]></category>
		<category><![CDATA[Fluent]]></category>
		<category><![CDATA[Laravel Framework]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=712</guid>

					<description><![CDATA[<p>Sometimes, a story shares more information and conveys more insights than just spoon feeding people information.  I use Doctrine ORM a lot but was curious what Symfony-based Laravel framework used as a database ORM or if it even used one at all.  After all, in Symfony you can use custom ORM packages but Doctrine works [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/laravel-php-framework-basic-explanation-of-eloquent-doctrine-and-fluent/">Laravel PHP Framework:  Basic Explanation of Eloquent, Doctrine and Fluent</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/laravel-php-framework-basic-explanation-of-eloquent-doctrine-and-fluent/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">712</post-id>	</item>
		<item>
		<title>Skipper ORM Database Tool Useful and Intuitive for Symfony Framework &#038; Doctrine Users</title>
		<link>https://tools.belchamber.us/skipper-orm-database-tool-useful-intuitive-symfony-framework-doctrine-users/</link>
					<comments>https://tools.belchamber.us/skipper-orm-database-tool-useful-intuitive-symfony-framework-doctrine-users/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Fri, 13 Feb 2015 03:29:22 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Symfony, Twig, Doctrine & ORMs]]></category>
		<category><![CDATA[database objects]]></category>
		<category><![CDATA[database tools]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[skipper]]></category>
		<category><![CDATA[symfony]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=709</guid>

					<description><![CDATA[<p>I&#8217;ll have to admit when I first started learning Symfony probably my biggest stumbling block was to get the right data from form collections to persist or update to the database correctly.  It really shouldn&#8217;t be so complex, I mean, I spent a week learning the intricacies with the &#8220;let the framework do it&#8221; mentality [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/skipper-orm-database-tool-useful-intuitive-symfony-framework-doctrine-users/">Skipper ORM Database Tool Useful and Intuitive for Symfony Framework &#038; Doctrine Users</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/skipper-orm-database-tool-useful-intuitive-symfony-framework-doctrine-users/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">709</post-id>	</item>
		<item>
		<title>Setting a Doctrine query limit in Sensio Lab&#8217;s Symfony PHP framework for customer queries in respositories</title>
		<link>https://tools.belchamber.us/setting-doctrine-query-limit-sensio-labs-symfony-php-framework-customer-queries-respositories/</link>
					<comments>https://tools.belchamber.us/setting-doctrine-query-limit-sensio-labs-symfony-php-framework-customer-queries-respositories/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Thu, 01 Jan 2015 21:37:15 +0000</pubDate>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php framework]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[symfony tips]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=664</guid>

					<description><![CDATA[<p>Here is an example of a simple DQL query in a custom repository method meant to return a single array result. The following will return the latest result in case there are multiple contact records that match the &#8220;customerId&#8221; field, which is actually &#8220;customer_id&#8221; in the database, but remember that camelCase convention applies to Doctrine [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/setting-doctrine-query-limit-sensio-labs-symfony-php-framework-customer-queries-respositories/">Setting a Doctrine query limit in Sensio Lab&#8217;s Symfony PHP framework for customer queries in respositories</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/setting-doctrine-query-limit-sensio-labs-symfony-php-framework-customer-queries-respositories/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">664</post-id>	</item>
	</channel>
</rss>
