Entries by admin

.Net Aspire

.NET Aspire is an opinionated, cloud ready stack for building observable, production ready, distributed applications. .NET Aspire is delivered through a collection of NuGet packages that handle specific cloud-native concerns. Cloud-native apps often consist of small, interconnected pieces or microservices rather than a single, monolithic code base. Cloud-native apps generally consume a large number of […]

Unlocking Data Insights with Snowpark DataFrames

Welcome, data enthusiasts! Have you heard of Snowpark, the powerful DataFrame API within the Snowflake data platform? If you’re new to data manipulation, Snowpark DataFrames can be your gateway to unlocking valuable insights from your datasets, regardless of their size or complexity.     Imagine a world where you can explore, clean, and analyze your […]

Filter In ASP.NET Core

Understanding Filters in .NET Core · Filters allow us to run custom code before or after executing the action method. · The filters are invoked at specific stages in the request processing pipeline. · We can create custom filters to eliminate duplicate code in our application. Types of Filters in .NET Core 1. Authorization Filters […]

HTML Helpers in MVC

HTML Helpers are managed within View to execute HTML content. We can use HTML Helpers to implement a method that returns a string. This tutorial discusses how you can define or create custom HTML Helpers that you can use within your MVC views. Using HTML Helpers, you can decrease the amount of repetitive typing of […]

Object-Oriented Programming

Object-oriented programming (OOP) is a fundamental paradigm in software development, offering a structured approach to organizing and designing code. OOP emphasizes the modelling of real-world entities and their interactions within a computer program. In this blog post, we’ll explore the key concepts of object-oriented programming in C#. Classes and Objects: Classes: A class is a blueprint or template for creating objects. It […]

JIT (just-in-time) on Azure VM

· What is JIT (just-in-time) JIT is use to secure port of VM.JIT is feature of Microsoft Defender for Cloud. This defender is use for secure azure virtual machine. JIT mainly provide manage open port on VM like SSH, RDP. There open port is danger for VM because attacker always scan the internet for open ports like RDP […]

Improve Code Quality and Performance

     1. Use clear and concise code: – Your code should be easy to read, understand, and modify. Avoid using overly complex code or unnecessary comments that can make it difficult for others to follow. You should avoid unnecessary repetition, redundancy, and filler words. You should also proofread and edit your documentation for grammar, spelling, […]

SQL SERVER AGENT

In this blog, I will explain in detail about the SQL Server Agent. ð What is SQL server agent? SQL Server Agent is a component of Microsoft SQL Server that automates tasks, such as backups, database maintenance, and executing T-SQL scripts or SSIS packages on a scheduled basis. SQL server agent service available in developer edition […]

Pandas

Pandas: How to Read and Write Data to a SQL Database Pandas read_sql() function is used to read data from SQL queries or database tables into DataFrame. This function allows you to execute SQL queries and load the results directly into a Pandas DataFrame. This function is a wrapper for the read_sql_query() and read_sql_table() functions, based on the […]

SQL JOIN

Structured Query Language (SQL) is a popular programming language used for managing relational databases. One of the key features of SQL is the ability to combine data from multiple tables using joins. In this blog post, we will explore SQL joins and their various types. What is SQL Joins SQL Join is a clause used […]

Unit Testing in C#

In Today’s blog will discuss importance of Unit test cases and other points. Unit cases is software development process that is implemented and executed by software developer to ensure implemented logic is behaves as expected or not and function is return the values as expected. Unit testing allows the developer to refactor the code and […]

Power BI

Ø Microsoft Power BI is a data visualization platform used primarily for business intelligence purposes. Designed to be used by business professionals with varying levels of data knowledge, Power BI’s dashboard is capable of reporting and visualizing data in a wide range of different styles, including graphs, maps, charts, scatter plots, and more. Power BI’s “AI Insights” functionality, […]