Find most used column names in database Query: select col.name as ColumnName, count(*) as Tables, cast(100.0 * count(*) / (select

asp.net,c#.net, MVC, WPF, WCF, JavaScript, JQuery, SQL Server, Interview Q&A
Programming Languages- c#, java, asp.net etc articles
Find most used column names in database Query: select col.name as ColumnName, count(*) as Tables, cast(100.0 * count(*) / (select
Difference between temporary table and table variable in sql server Table variable Temporary table You can use it in User
Evaluate code execution time in C# Hello folks, sometime we as a developer wants to check exact execution time to
WPF and Windows Forms are Now open source Recently Microsoft has announced WPF and Windows form as a Open source.
Difference between static and non-static variable in C# Staic Variable Non Static Variable Staic keyword must be used to
Capitalize First Letter of each Words of string in C# Hello folks, sometimes we may have requirement like to have Capitalize
NumberStyle in Parse() and TryParse() in C# Hello folks, today we will learn about NumberStyle in Parse() and TryParse() in
Difference between JSON.stringify() and JSON.parse() in JSON Now a days all browsers supports JSON and in JSON we have stringify()
Find asp.net MVC version used by application For MVC without .net core First of all create project of MVC->
Advantage of asp.net MVC over webforms Features asp.net MVC asp.net WebForm Separation of Concerns More Less Programming Style ActionResult
MVC Architectural Pattern Hello folks today we will understand MVc architectural Pattern. Microsoft came up with asp.net MVC architecture in
Nullable types in C# C# types are divided into below two categories: Value Types: int, float, double, struct etc. Reference