Emmanuel Gabrielcodease.hashnode.devยทJan 7, 2025Creating an Azure SQL Database, with .Net6 Rest APISummary: in this tutorial, you will learn how to create a single Azure SQL Database single database, and connect it to your .Net6 Rest API using the Azure SQL single database as a datastore. Azure SQL Databases is a platform-as-a-service (PAAS) offer...1 likeAzure
Ehsan Mirsaeedimirsaeedi.hashnode.devยทJan 4, 2025CPU and Memory monitoring in .NET(Just as a reminder to myself: this is the first post after my child was born, and now I'm writing while he is cooing and speaking to us in his own baby language.) Recently, I worked on implementing a throttling mechanism for our service at Microsoft...dotnet
Priyesh Singhdotnetdevelopment.hashnode.devยทDec 31, 2024Everything GraphQL + DotNet CoreWhy we need GraphQL? GraphQL is a query language for APIs which provides a more efficient and flexible alternative to REST. It was originally built by Facebook but itโs open-sourced and is maintained by a large community. To design web APIs, Restful ...GraphQL
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 12, 2024Jagged Arrays in C#A jagged array is an array of arrays, where each element can have a different length. This flexibility allows you to create arrays with varying dimensions. int[][] jaggedArray = new int[3][]; // Declares a jagged array with 3 rows // Initialize each...C#
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 12, 2024Single and Multi-Dimensional Arrays in C#Arrays in C# are a fundamental data structure used to store a collection of elements of the same data type. They provide a convenient way to organize and manipulate data. There are two main types of arrays in C#: 1. Single-Dimensional Arrays ๐ A s...single dimensional arrays
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 10, 2024Write and Read Console1. Console.WriteLine() This method is used to print a specified text or variable value to the console window. Console.WriteLine(value); // Print a message to the console Console.WriteLine("Hello, world!"); // Print the value of a variable ...readkey
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 7, 2024var and dynamic KeywordsIn-Depth Explanation of var and dynamic Keywords ๐ฏฬฒ๐ฬฒ๐ซฬฒ ฬฒ๐ฆธฬฒโฬฒ ๐ฬฒ๐งฬฒ๐ฬฒ ฬฒ๐ฬฒ๐ฒฬฒ๐งฬฒ๐ฬฒ๐ฆฬฒ๐ขฬฒ๐ฬฒ ฬฒ๐ฆนฬฒโฬฒ ฬฒ๐ฬฒ๐ฬฒ๐ฒฬฒ๐ฐฬฒ๐จฬฒ๐ซฬฒ๐ฬฒ๐ฌฬฒ When you get tired of declaring data types of variables. And you don't want to stress on small things and focus on the...coding tips
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 6, 2024๐# ๐ข๐ฝ๐ฒ๐ฟ๐ฎ๐๐ผ๐ฟ๐:Operators are symbols that perform specific operations on operands. They help us manipulate data and perform calculations. C# provides a rich set of operators to manipulate data. ๐๐ฟ๐ถ๐๐ต๐บ๐ฒ๐๐ถ๐ฐ ๐ข๐ฝ๐ฒ๐ฟ๐ฎ๐๐ผ๐ฟ๐: (Addition): Adds two operands...๐ง๐ฒ๐ฟ๐ป๐ฎ๐ฟ๐
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...reference datatypes
Ahamad Basha NSintro-to-c-net-core.hashnode.devยทDec 3, 2024Road Map to Dot Net Core (Detailed)Level Up Your .NET Core Skills: A Comprehensive Roadmap Master the Fundamentals ๐: C# Fundamentals ๐ฆธโโ๏ธ: Syntax and Data Types ๐ข Object-Oriented Programming (OOP) ๐๏ธ: Classes, Inheritance ๐งฌ, Polymorphism ๐ญ, Encapsulation ๐, Abstraction โ๏ธ ...C#