	<rss version="2.0">
		<channel>
			<title>LLBLGen Pro Support System ORM Profiler feed</title>
			<link>https://www.llblgen.com/tinyforum//Forum/59</link>
			<description>This is the RSS feed for the forum ORM Profiler on the LLBLGen Pro Support System forum system.</description>
			<ttl>30</ttl>
			<language>en-us</language>
				<item>
					<title>cannot start profiler .net core by kakaiya</title>
					<description>&lt;p&gt;Otis,&lt;/p&gt;&#xA;&lt;p&gt;I have not able to test it yet but if issue still come up for me then will let you know.&lt;/p&gt;&#xA;&lt;p&gt;Please close this ticket for now.&lt;/p&gt;&#xA;</description>
					<author>kakaiya</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153917</link>
					<pubdate>Thu, 14 Nov 2024 02:38:47 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153917</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by Otis</title>
					<description>&lt;blockquote&gt;&lt;p class=&quot;quote-nickname&quot;&gt;kakaiya wrote:&lt;/p&gt;&#xA;&lt;p&gt;Hi Otis,&lt;/p&gt;&#xA;&lt;p&gt;Thank you.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Did that make the data end up on the client or was the data still not arriving?&lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153914</link>
					<pubdate>Tue, 12 Nov 2024 05:59:08 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153914</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by kakaiya</title>
					<description>&lt;p&gt;Hi Otis,&lt;/p&gt;&#xA;&lt;p&gt;Thank you.&lt;/p&gt;&#xA;</description>
					<author>kakaiya</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153912</link>
					<pubdate>Mon, 11 Nov 2024 23:22:00 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153912</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by Otis</title>
					<description>&lt;blockquote&gt;&lt;p class=&quot;quote-nickname&quot;&gt;kakaiya wrote:&lt;/p&gt;&#xA;&lt;p&gt;It is not running in UNIT test. It is runing in real code. Is there any setting to not generate and delay SQL in ORM?&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;For testing, could you place a Thread.Sleep(1000); right below the closing &lt;code&gt;}&lt;/code&gt; in the using statement? The problem shouldn&#x27;t occur with code running in an app, but if the app is a webapp, the thread might have ended or at least the code that has to send the data isn&#x27;t available anymore (cleaned up). The reason we found when it wasn&#x27;t arriving at the client was when the unit test ended and effectively all objects were cleaned up already. &lt;/p&gt;&#xA;&lt;p&gt;(the thread.sleep(1000) is of course not useful in production, but it&#x27;s meant to make sure the thread running the code isn&#x27;t cleaned up before the profiler code sends the data. We use a named pipe which is fed by a thread which receives the objects to send. When the objects involved in a query (connection, dbcommand etc.) have to send data, they&#x27;ll produce a message object and this is appended to a queue. The named pipe thread will empty this queue every 100ms. So if the application is terminated within this 100ms nothing will end up in the client. To my knowledge the thread dealing with this queue should stay alive as it&#x27;s started as a background thread. )&lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153911</link>
					<pubdate>Mon, 11 Nov 2024 06:46:29 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153911</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by kakaiya</title>
					<description>&lt;p&gt;It is not running in UNIT test. It is runing in real code. Is there any setting to not generate and delay SQL in ORM?&lt;/p&gt;&#xA;</description>
					<author>kakaiya</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153910</link>
					<pubdate>Mon, 11 Nov 2024 00:23:14 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153910</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by Otis</title>
					<description>&lt;blockquote&gt;&lt;p class=&quot;quote-nickname&quot;&gt;kakaiya wrote:&lt;/p&gt;&#xA;&lt;p&gt;Many times it is not showing instantly any SQL in Profiler when running this code.&lt;/p&gt;&#xA;&lt;p&gt;using (DataAccessAdapter adapter = new DataAccessAdapter())&#xD;&#xA; {&#xD;&#xA;     adapter.FetchEntityCollection(this, filterBucket, maxNumberOfItemsToReturn, sortClauses, prefetchPath, excludeIncludeFields);&#xD;&#xA; }&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;If this is in a unit test, it might be the process the query runs in ends before the actual data captured is sent to the client. I see this too in our unit tests, especially on .NET 6&#x2B;. I tracked it down to that: the data is captured but as the process the capture code runs in is terminated as the test has been completed, the data is never fully sent and therefore doesn&#x27;t arrive at the client&lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153904</link>
					<pubdate>Sat, 09 Nov 2024 05:59:21 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153904</guid>
				</item>
				<item>
					<title>cannot start profiler .net core by kakaiya</title>
					<description>&lt;p&gt;Many times it is not showing instantly any SQL in Profiler when running this code.&lt;/p&gt;&#xA;&lt;p&gt;using (DataAccessAdapter adapter = new DataAccessAdapter())&#xD;&#xA; {&#xD;&#xA;     adapter.FetchEntityCollection(this, filterBucket, maxNumberOfItemsToReturn, sortClauses, prefetchPath, excludeIncludeFields);&#xD;&#xA; }&lt;/p&gt;&#xA;</description>
					<author>kakaiya</author>
					<link>https://www.llblgen.com/tinyforum/Thread/26983#153903</link>
					<pubdate>Sat, 09 Nov 2024 01:57:22 GMT</pubdate>
					<category>cannot start profiler .net core</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/26983#153903</guid>
				</item>
				<item>
					<title>Which version: v2.0.8 or 2.0.6 is it? by Findev</title>
					<description>&lt;p&gt;something in between, golden middle, ok, makes sense because why not &lt;img src=&quot;/tinyforum/pics/emojis/simple_smile.png&quot; class=&quot;emoji&quot; alt=&quot;simple_smile&quot;/&gt;&lt;/p&gt;&#xA;</description>
					<author>Findev</author>
					<link>https://www.llblgen.com/tinyforum/Thread/28927#153836</link>
					<pubdate>Sat, 12 Oct 2024 10:53:21 GMT</pubdate>
					<category>Which version: v2.0.8 or 2.0.6 is it?</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/28927#153836</guid>
				</item>
				<item>
					<title>Which version: v2.0.8 or 2.0.6 is it? by Otis</title>
					<description>&lt;p&gt;You&#x27;ll be happy to know the interceptor is v2.0.7 &lt;img src=&quot;/tinyforum/pics/emojis/simple_smile.png&quot; class=&quot;emoji&quot; alt=&quot;simple_smile&quot;/&gt; No I&#x27;m not kidding, we bumped the version when we updated the algorithmia references. We forgot to update the dependencies in the nuget package for algorithmia so we had to bump the version, which then became 2.0.8 &lt;img src=&quot;/tinyforum/pics/emojis/simple_smile.png&quot; class=&quot;emoji&quot; alt=&quot;simple_smile&quot;/&gt; &lt;/p&gt;&#xA;</description>
					<author>Otis</author>
					<link>https://www.llblgen.com/tinyforum/Thread/28927#153835</link>
					<pubdate>Sat, 12 Oct 2024 05:01:22 GMT</pubdate>
					<category>Which version: v2.0.8 or 2.0.6 is it?</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/28927#153835</guid>
				</item>
				<item>
					<title>Which version: v2.0.8 or 2.0.6 is it? by Findev</title>
					<description>&lt;p&gt;Hi,&lt;/p&gt;&#xA;&lt;p&gt;zip file is named &amp;quot;ORMProfiler-v208-setup.zip&amp;quot;, however, installed app has a title bar mentioning 2.0.6. And the winner is....? &lt;img src=&quot;/tinyforum/pics/emojis/simple_smile.png&quot; class=&quot;emoji&quot; alt=&quot;simple_smile&quot;/&gt;&lt;/p&gt;&#xA;&lt;p&gt;Thank you!&lt;/p&gt;&#xA;</description>
					<author>Findev</author>
					<link>https://www.llblgen.com/tinyforum/Thread/28927#153834</link>
					<pubdate>Fri, 11 Oct 2024 13:13:27 GMT</pubdate>
					<category>Which version: v2.0.8 or 2.0.6 is it?</category>
					<guid ispermalink="true">https://www.llblgen.com/tinyforum/Thread/28927#153834</guid>
				</item>
		</channel>
	</rss>
