
Emmet — the essential toolkit for web-developers
“a plugin which enables you to add your own CSS snippet and generate HTML, XML quickly” Introduction Basically, most text editors out there allow you
“a plugin which enables you to add your own CSS snippet and generate HTML, XML quickly” Introduction Basically, most text editors out there allow you
I think a good C# developer needs to get a handle on .NET generics. Most of the advanced features in C# deal with lots of
There are two different methods of retrieving the list of Primary Keys and Foreign Keys from database. Method 1: INFORMATION_SCHEMA SELECT DISTINCT Constraint_Name AS [Constraint],
According to Wikipedia, Object-relational mapping is: a programming technique for converting data between incompatible type systems in relational databases and object-oriented programming languages. This is
Lazy loading is a nice and very important concept in the programming world. Sometimes it helps to improve performance and adapt best practices in application
Microsoft announced the new Azure Data Lake services for analytics in the cloud that includes a hyper-scale repository, a new analytics service built on YARN
Magic Tables Magic tables are nothing but the logical tables maintained by SQL server internally. There are two types of Magic tables available in SQL
Hashtable. This optimizes lookups. It computes a hash of each key you add. It then uses this hash code to look up the element very
The following are Unit Test best practices and guidelines: Test one object or class per unit test class. Yes, you should refactor your code if