<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Naghme Vahabi</title>
    <description>The latest articles on DEV Community by Naghme Vahabi (@naghme_vahabi_0f038741f9e).</description>
    <link>https://dev.to/naghme_vahabi_0f038741f9e</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2668223%2Fda4f7b6c-5887-4006-94e3-9b5330fa3720.jpg</url>
      <title>DEV Community: Naghme Vahabi</title>
      <link>https://dev.to/naghme_vahabi_0f038741f9e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/naghme_vahabi_0f038741f9e"/>
    <language>en</language>
    <item>
      <title>C#</title>
      <dc:creator>Naghme Vahabi</dc:creator>
      <pubDate>Mon, 27 Jan 2025 06:30:44 +0000</pubDate>
      <link>https://dev.to/naghme_vahabi_0f038741f9e/c-3gim</link>
      <guid>https://dev.to/naghme_vahabi_0f038741f9e/c-3gim</guid>
      <description></description>
      <category>csharp</category>
    </item>
    <item>
      <title>C# 13 new params feature</title>
      <dc:creator>Naghme Vahabi</dc:creator>
      <pubDate>Mon, 20 Jan 2025 09:03:13 +0000</pubDate>
      <link>https://dev.to/naghme_vahabi_0f038741f9e/c-13-new-params-feature-43md</link>
      <guid>https://dev.to/naghme_vahabi_0f038741f9e/c-13-new-params-feature-43md</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpwzxurwlbhqp577oaofd.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpwzxurwlbhqp577oaofd.jpeg" alt="Image description" width="800" height="800"&gt;&lt;/a&gt;🚨Comparing coding approaches in C# 13! &lt;/p&gt;

&lt;p&gt;🚀 Previously, we were able to use only arrays when We used params keyword.&lt;br&gt;
C# 13 introduces Params Collections, allowing you to use the following concrete types:&lt;/p&gt;

&lt;p&gt;*Arrays&lt;br&gt;
*IEnumerable&lt;br&gt;
*List&lt;br&gt;
*Span&lt;br&gt;
Embracing new features enhances our coding experience! &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/..." class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/..." alt="Uploading image" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>c</category>
      <category>dotnet</category>
      <category>programming</category>
    </item>
    <item>
      <title>READ_UNCOMMITTED in SQL Server</title>
      <dc:creator>Naghme Vahabi</dc:creator>
      <pubDate>Sun, 12 Jan 2025 07:54:27 +0000</pubDate>
      <link>https://dev.to/naghme_vahabi_0f038741f9e/readuncommitted-in-sql-server-5ama</link>
      <guid>https://dev.to/naghme_vahabi_0f038741f9e/readuncommitted-in-sql-server-5ama</guid>
      <description>&lt;p&gt;📑 Understanding READ_UNCOMMITTED in SQL Server&lt;br&gt;
READ_UNCOMMITTED is the lowest isolation level in SQL Server. When a query runs with this isolation level:&lt;/p&gt;

&lt;p&gt;🟢 Benefits:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fastest reading performance&lt;/li&gt;
&lt;li&gt;No locks on data&lt;/li&gt;
&lt;li&gt;Never waits for locks to be released&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🔴 Risks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dirty Read: May read uncommitted data&lt;/li&gt;
&lt;li&gt;Non-Repeatable Read: Reading the same record twice might give different results&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;❓When to use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Non-critical reporting&lt;/li&gt;
&lt;li&gt;Displaying approximate stats and metrics&lt;/li&gt;
&lt;li&gt;Where eventual consistency is acceptable&lt;/li&gt;
&lt;li&gt;Reading low-importance data where 100% accuracy isn't required&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;❓When NOT to use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Financial transactions&lt;/li&gt;
&lt;li&gt;Critical calculations&lt;/li&gt;
&lt;li&gt;Where data consistency is crucial&lt;/li&gt;
&lt;li&gt;Interdependent operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;using(var transaction = connection.BeginTransaction(IsolationLevel.ReadUncommitted))&lt;br&gt;
{&lt;br&gt;
   // Read Data&lt;br&gt;
}&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🔍 Nested superpowers: Local functions let you organize code right where you need it! They're like mini-methods that live inside your main method, keeping related logic tightly packed and crystal clear.</title>
      <dc:creator>Naghme Vahabi</dc:creator>
      <pubDate>Tue, 07 Jan 2025 07:43:43 +0000</pubDate>
      <link>https://dev.to/naghme_vahabi_0f038741f9e/nested-superpowers-local-functions-let-you-organize-code-right-where-you-need-it-theyre-like-4697</link>
      <guid>https://dev.to/naghme_vahabi_0f038741f9e/nested-superpowers-local-functions-let-you-organize-code-right-where-you-need-it-theyre-like-4697</guid>
      <description></description>
    </item>
  </channel>
</rss>
