<?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/"
	
	>
<channel>
	<title>
	Comments for Dot Net Tutorials	</title>
	<atom:link href="https://dotnettutorials.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://dotnettutorials.net/</link>
	<description></description>
	<lastBuildDate>Sat, 08 Aug 2026 07:16:17 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>
	<item>
		<title>
		Comment on Real-time Ecommerce Application using ASP.NET Core MVC by Master Informatika		</title>
		<link>https://dotnettutorials.net/lesson/real-time-ecommerce-application-using-asp-net-core-mvc/#comment-6666</link>

		<dc:creator><![CDATA[Master Informatika]]></dc:creator>
		<pubDate>Sat, 08 Aug 2026 07:16:17 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/real-time-ecommerce-application-using-asp-net-core-mvc/#comment-6666</guid>

					<description><![CDATA[What specific real-time feature (e.g., live inventory updates, instant order notifications, or dynamic invoice generation) does the ASP.NET Core MVC application prioritize for the customer-facing order flow?
&lt;a href=&quot;https://io.telkomuniversity.ac.id/degree-program/faculty-of-economics-and-business/magister-management/&quot; rel=&quot;nofollow ugc&quot;&gt;see&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>What specific real-time feature (e.g., live inventory updates, instant order notifications, or dynamic invoice generation) does the ASP.NET Core MVC application prioritize for the customer-facing order flow?<br />
<a href="https://io.telkomuniversity.ac.id/degree-program/faculty-of-economics-and-business/magister-management/" rel="nofollow ugc">see</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Facade Design Pattern Real-Time Example in C# by Bhagwat		</title>
		<link>https://dotnettutorials.net/lesson/facade-design-pattern-real-time-example-csharp/#comment-6665</link>

		<dc:creator><![CDATA[Bhagwat]]></dc:creator>
		<pubDate>Mon, 03 Aug 2026 12:58:25 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/facade-design-pattern-real-time-example-csharp/#comment-6665</guid>

					<description><![CDATA[Very good! I&#039;m genuinely stunned. Without that, I wouldn&#039;t have been able to understand these concepts in such a detailed yet simple way.]]></description>
			<content:encoded><![CDATA[<p>Very good! I&#8217;m genuinely stunned. Without that, I wouldn&#8217;t have been able to understand these concepts in such a detailed yet simple way.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Introduction to Data Science by amar		</title>
		<link>https://dotnettutorials.net/lesson/introduction-to-data-science/#comment-6662</link>

		<dc:creator><![CDATA[amar]]></dc:creator>
		<pubDate>Thu, 30 Jul 2026 20:33:32 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/introductionto-data-science/#comment-6662</guid>

					<description><![CDATA[excellent]]></description>
			<content:encoded><![CDATA[<p>excellent</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on ASP.NET Core Experienced Interview Questions and Answers by Venkat		</title>
		<link>https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6661</link>

		<dc:creator><![CDATA[Venkat]]></dc:creator>
		<pubDate>Thu, 30 Jul 2026 09:03:11 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6661</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6008&quot;&gt;sahshi&lt;/a&gt;.

Besrt interview questions]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6008">sahshi</a>.</p>
<p>Besrt interview questions</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on ASP.NET Core Experienced Interview Questions and Answers by venkat		</title>
		<link>https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6660</link>

		<dc:creator><![CDATA[venkat]]></dc:creator>
		<pubDate>Thu, 30 Jul 2026 09:00:52 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/asp-net-core-experienced-interview-questions-and-answers/#comment-6660</guid>

					<description><![CDATA[Best interview questions]]></description>
			<content:encoded><![CDATA[<p>Best interview questions</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arrays in C# by Monil		</title>
		<link>https://dotnettutorials.net/lesson/arrays-csharp/#comment-6659</link>

		<dc:creator><![CDATA[Monil]]></dc:creator>
		<pubDate>Wed, 29 Jul 2026 08:24:00 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/arrays-in-c/#comment-6659</guid>

					<description><![CDATA[How to Access Array Elements in C#?
Suppose we have an array as follows:
int[] n={1,2,3};

Now, you want to print 3 and you can see the value three is present at the index position 2, so to print the value 8, you need to use the array index position to 2 as follows:
Console.WriteLine(n[2]);

in the above example instead of 8 need 3 =&#062; print the value of 3]]></description>
			<content:encoded><![CDATA[<p>How to Access Array Elements in C#?<br />
Suppose we have an array as follows:<br />
int[] n={1,2,3};</p>
<p>Now, you want to print 3 and you can see the value three is present at the index position 2, so to print the value 8, you need to use the array index position to 2 as follows:<br />
Console.WriteLine(n[2]);</p>
<p>in the above example instead of 8 need 3 =&gt; print the value of 3</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Resource Filters in ASP.NET Core Web API by sameera		</title>
		<link>https://dotnettutorials.net/lesson/resource-filters-in-asp-net-core-web-api/#comment-6656</link>

		<dc:creator><![CDATA[sameera]]></dc:creator>
		<pubDate>Fri, 24 Jul 2026 10:59:18 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/resource-filters-in-asp-net-core-web-api/#comment-6656</guid>

					<description><![CDATA[Thank you sir]]></description>
			<content:encoded><![CDATA[<p>Thank you sir</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Domain-Driven Design in ASP.NET Core Web API by iamgood		</title>
		<link>https://dotnettutorials.net/lesson/domain-driven-design-in-asp-net-core-web-api/#comment-6654</link>

		<dc:creator><![CDATA[iamgood]]></dc:creator>
		<pubDate>Tue, 21 Jul 2026 08:14:44 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/domain-driven-design-in-asp-net-core-web-api/#comment-6654</guid>

					<description><![CDATA[you besstt, but for the convention of services names for example OrderService in the application layer change it to OrderApplicationService because usually OrderService is name of Domain Service.]]></description>
			<content:encoded><![CDATA[<p>you besstt, but for the convention of services names for example OrderService in the application layer change it to OrderApplicationService because usually OrderService is name of Domain Service.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Domain-Driven Design in ASP.NET Core Web API by me		</title>
		<link>https://dotnettutorials.net/lesson/domain-driven-design-in-asp-net-core-web-api/#comment-6653</link>

		<dc:creator><![CDATA[me]]></dc:creator>
		<pubDate>Tue, 21 Jul 2026 08:06:31 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/domain-driven-design-in-asp-net-core-web-api/#comment-6653</guid>

					<description><![CDATA[good stuff, but just one thing for better practice, in some place you put references in the domain for entityframework, this is coupling the domain to specific technology, the domain should be more neutral of specific implementations, so when we want to upgrade to make changes to the system the domain will be outside of this.]]></description>
			<content:encoded><![CDATA[<p>good stuff, but just one thing for better practice, in some place you put references in the domain for entityframework, this is coupling the domain to specific technology, the domain should be more neutral of specific implementations, so when we want to upgrade to make changes to the system the domain will be outside of this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Introduction to Microservices Architecture by Viska		</title>
		<link>https://dotnettutorials.net/lesson/microservices-architecture/#comment-6652</link>

		<dc:creator><![CDATA[Viska]]></dc:creator>
		<pubDate>Mon, 20 Jul 2026 06:24:12 +0000</pubDate>
		<guid isPermaLink="false">https://dotnettutorials.net/lesson/introduction-to-microservices/#comment-6652</guid>

					<description><![CDATA[The greatest strength of microservices lies in the ability to deploy and scale each service independently. This flexibility enables faster feature delivery while minimizing the impact of system updates]]></description>
			<content:encoded><![CDATA[<p>The greatest strength of microservices lies in the ability to deploy and scale each service independently. This flexibility enables faster feature delivery while minimizing the impact of system updates</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
