Lately, I was trying to run the codemap on my visual studio and got the error “Login failed due to trigger execution”. Details were something
Category: Code stuffs
Full details on Struct and Class
Difference between Struct and Class Struct Class Struct are value types. Classes are of reference types. Struct are stored on the stack. Classes are stored
How to change the order of columns in SQL?
In order to maintain the order of columns in SQL we require 2 steps Disable the “Prevent saving changes that require the table re-creation“ Open
Rust : Convert String to Integer
Convert string to integer Do you want to convert string to integer? Here are the methods to extract integer value i from its string representation s.“1234” to 1234
Get the input in Rust
I started learning Rust lately. Kind of interesting but more to learn. Here is the program that help to get the input from user in
ProjectEuler : Multiple of 3 And 5
Multiple of 3 And 5: Q1 From ProjectEuler.NET Description If we list all the natural numbers below 10 that are multiples of 3 or 5,
Runtime Compile C# Code
Well have you ever wondered to write the C# code in string and execute them? In this blog I will tell you how to Runtime
Lets Create a Null Checking Extension on C#
Extension methods are static methods behaving like instance methods. We generally use this so that we can use this function as a part of that
How to encrypt and decrypt using cryptography (AES)?
Encryption Code Decryption Code Usage
How to create delete trigger in SQL Server?
Hello Everyone, I hope you are doing well. Today, I will be explaining on how to create the Delete Triggers in Sql Server. We all