Monday, October 10, 2016

C# What is the difference between IEnumerable and IQueryable?

What is the difference between IEnumerable and IQueryable? IEnumerable and IQueryable may seem like the same at a quick glance, but there are important differences that us, as developers must be aware so that we not only get a working product out the door but also something that performs well.                       ...

Using Generics With C#

Using Generics With C# Generics are most frequently used with collections and the methods that operate on them. Version 2.0 of the .NET Framework class library provides a new namespace, System.Collections.Generic, which contains several new generic-based collection classes. Generics are different from generic collections. Generic collections are emerged from generic concept. It helps us to maximize...

Quickly Rename a Mysql database

How do I quickly rename a MySQL database (change schema name)? From phpMyAdmin, select the database you want to select. In the tabs there's one called Operations, go to the rename section. That's all. It does, as many suggested, create a new database with the new name, dump all tables of the...