using System; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; using Newtonsoft.Json; class Program { ...
Read More
Hi
List Of Tables Having The Column
we have seen the methods to check if column exists in a specific table in the database USE {{ Database Name }} SELECT TABLE_SCHEMA, ...
Read More
How to calculate expiring voucher balances with partially used vouchers are using sql server
UPDATE Customers SET Balance = Balance - ( SELECT ISNULL(SUM(CASE WHEN ExpirationDate <= GETDATE() THEN Remain...
Read More
repalce of whitespace with + symbol in c#
using System; class Program { static void Main() { string input = "This is an example string with spaces"; ...
Read More
truncate in linq in c#
var originalString = "This is a long text."; var truncatedString = new string(originalString.Take(10).ToArray()); Console.WriteLi...
Read More
random letter generation with character limit in #
using System; using System.Text; class Program { static void Main () { string randomString = GenerateRandomLetter...
Read More
How to Fetch dynamic datatable?
DataSet sampleDataSet = new DataSet(); sampleDataSet.Locale = CultureInfo.InvariantCulture; ...
Read More
How to create dynamic datatable?
DataSet sampleDataSet = new DataSet(); sampleDataSet.Locale = CultureInfo.InvariantCulture; ...
Read More
Subscribe to:
Posts (Atom)