	<rss version="2.0">
		<channel>
			<title>LLBLGen Pro Support System Feature requests feed</title>
			<link>https://llblgen.com/tinyforum//Forum/35</link>
			<description>This is the RSS feed for the forum Feature requests on the LLBLGen Pro Support System forum system.</description>
			<ttl>30</ttl>
			<language>en-us</language>
				<item>
					<title>JSON/Vector data type support for SQL Server 2025 by Otis</title>
					<description>&lt;blockquote&gt;&lt;p class=&quot;quote-nickname&quot;&gt;DvK wrote:&lt;/p&gt;&#xA;&lt;p&gt;OK, that&#x27;s a pity. I thought EF Core supports it, so LLBLGen will as well.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;IIRC EF Core supports json types indeed, don&#x27;t think they support vector (yet). A long time ago we decided not to add xpath, json and the like types unless it&#x27;s possible to query them with parameters, but no database has implemented it that way, so we don&#x27;t support them in our runtime. &lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://llblgen.com/tinyforum/Thread/29084#154662</link>
					<pubdate>Wed, 18 Mar 2026 08:19:34 GMT</pubdate>
					<category>JSON/Vector data type support for SQL Server 2025</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29084#154662</guid>
				</item>
				<item>
					<title>JSON/Vector data type support for SQL Server 2025 by DvK</title>
					<description>&lt;p&gt;OK, that&#x27;s a pity. I thought EF Core supports it, so LLBLGen will as well.&lt;/p&gt;&#xA;</description>
					<author>DvK</author>
					<link>https://llblgen.com/tinyforum/Thread/29084#154660</link>
					<pubdate>Wed, 18 Mar 2026 07:50:16 GMT</pubdate>
					<category>JSON/Vector data type support for SQL Server 2025</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29084#154660</guid>
				</item>
				<item>
					<title>JSON/Vector data type support for SQL Server 2025 by Otis</title>
					<description>&lt;p&gt;We don&#x27;t support json types because querying requires the predicate to be embedded into the sql string (same reason as with xpath) . For vector types, we have to think about it, but I doubt we&#x27;ll do it. &lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://llblgen.com/tinyforum/Thread/29084#154657</link>
					<pubdate>Wed, 18 Mar 2026 07:14:51 GMT</pubdate>
					<category>JSON/Vector data type support for SQL Server 2025</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29084#154657</guid>
				</item>
				<item>
					<title>JSON/Vector data type support for SQL Server 2025 by DvK</title>
					<description>&lt;p&gt;Hi,&lt;/p&gt;&#xA;&lt;p&gt;Just wanted to inform about supporting the new JSON and Vector datatypes for SQL Server 2025, any chance of getting this into future releases?&lt;/p&gt;&#xA;&lt;p&gt;https://learn.microsoft.com/en-us/sql/t-sql/data-types/json-data-type&#xD;&#xA;https://learn.microsoft.com/en-us/sql/t-sql/data-types/vector-data-type&lt;/p&gt;&#xA;&lt;p&gt;Best regards,&#xD;&#xA;Danny&lt;/p&gt;&#xA;</description>
					<author>DvK</author>
					<link>https://llblgen.com/tinyforum/Thread/29084#154656</link>
					<pubdate>Tue, 17 Mar 2026 15:23:32 GMT</pubdate>
					<category>JSON/Vector data type support for SQL Server 2025</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29084#154656</guid>
				</item>
				<item>
					<title>Linq support for STRING_AGG by Otis</title>
					<description>&lt;blockquote&gt;&lt;p class=&quot;quote-nickname&quot;&gt;TomDog wrote:&lt;/p&gt;&#xA;&lt;p&gt;Any update on this?&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;We decided not to implement this as this is very problematic, as the requirement to deal with the query is to break it down to just the projection and inline that inside the function. This means that the query:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code class=&quot;cs&quot;&gt;var q = from c in metaData.Customer&#xA;group c by c.Country&#xA;into g&#xA;select new&#xA;{ Country = g.Key, Cities = string.Join(&amp;quot;,&amp;quot;, g.Select(x =&amp;gt; x.City)) };&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Can&#x27;t be translated directly, we have to interpret the &lt;code&gt;g.Select()&lt;/code&gt; because it&#x27;s inside the string join and can&#x27;t be converted into a query as that would result in a scalar query inside the function call. We thus have to break down the scalar query into just a projection and place it inside the function call. Our system doesn&#x27;t work that way as it doesn&#x27;t know what function the query is used in. (as that&#x27;s converted after the elements have been converted, i.e. at the very end)&lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://llblgen.com/tinyforum/Thread/28896#154597</link>
					<pubdate>Tue, 10 Feb 2026 07:03:48 GMT</pubdate>
					<category>Linq support for STRING_AGG</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/28896#154597</guid>
				</item>
				<item>
					<title>Linq support for STRING_AGG by TomDog</title>
					<description>&lt;p&gt;Any update on this?&lt;/p&gt;&#xA;</description>
					<author>TomDog</author>
					<link>https://llblgen.com/tinyforum/Thread/28896#154596</link>
					<pubdate>Mon, 09 Feb 2026 14:18:06 GMT</pubdate>
					<category>Linq support for STRING_AGG</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/28896#154596</guid>
				</item>
				<item>
					<title>.Net 10 by Otis</title>
					<description>&lt;p&gt;We&#x27;ll add LeftJoin/RightJoin support soon, but the breaking change Microsoft introduced silently was fixed yesterday indeed. &lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://llblgen.com/tinyforum/Thread/29048#154471</link>
					<pubdate>Thu, 13 Nov 2025 08:16:19 GMT</pubdate>
					<category>.Net 10</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29048#154471</guid>
				</item>
				<item>
					<title>.Net 10 by yowl</title>
					<description>&lt;p&gt;Sorry, should have read the other thread first, will try the hotfix.&lt;/p&gt;&#xA;</description>
					<author>yowl</author>
					<link>https://llblgen.com/tinyforum/Thread/29048#154470</link>
					<pubdate>Wed, 12 Nov 2025 13:53:37 GMT</pubdate>
					<category>.Net 10</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29048#154470</guid>
				</item>
				<item>
					<title>.Net 10 by yowl</title>
					<description>&lt;p&gt;Hi, Just out yesterday, but is there any ETA for an update that supports .net 10, seems like there are quite a lot of changes around the Linq area?&lt;/p&gt;&#xA;&lt;p&gt;Thanks&lt;/p&gt;&#xA;</description>
					<author>yowl</author>
					<link>https://llblgen.com/tinyforum/Thread/29048#154469</link>
					<pubdate>Wed, 12 Nov 2025 13:51:07 GMT</pubdate>
					<category>.Net 10</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29048#154469</guid>
				</item>
				<item>
					<title>Nullable reference types option by Otis</title>
					<description>&lt;p&gt;We&#x27;ll think about it!&lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://llblgen.com/tinyforum/Thread/29040#154415</link>
					<pubdate>Thu, 16 Oct 2025 07:21:34 GMT</pubdate>
					<category>Nullable reference types option</category>
					<guid ispermalink="true">https://llblgen.com/tinyforum/Thread/29040#154415</guid>
				</item>
		</channel>
	</rss>
