
Angular Interpolation
Process of displaying a component property in the respective view template is called Interpolation. By Using Interpolation, we can bind any type of property into […]
Process of displaying a component property in the respective view template is called Interpolation. By Using Interpolation, we can bind any type of property into […]
Linq Filters | Distinct, Linq Contains Distinct ———– result = context.users .Select(x => new User{ user_name= x.user_name }).Distinct().ToList();
Currency Conversion ——————– result = context.payments .Select(x => new Payment { id = x.payment_id, paid_amount = x.paid_amount != null ? x.paid_amount.Value.ToString(“N2”) : “0.00” }).ToList(); Date […]
Order By Single Column ———————- var result = context.users .Where(x => x.is_active) .Select(x => new User { id = x.user_id, name = x.firstname, address = […]
1. list of all Stored Procedure Modified in last N Days ———————————————————————— SELECT name FROM sys.objects WHERE type = ”P” AND DATEDIFF(D,modify_date, GETDATE()) < 10 […]
The process of transforming the results of a query into a new readable form, is called projection // First Record in matched Tuples var names […]
We can disable comments and even remove the comment section from your WordPress site. Disable Comments on a Specific Page or Post WordPress allow us […]
Copyright © 2021 | WordPress Theme by MH Themes