How to test Multiple Database per Context
=========================================

1. Ensure same connection string set for both project Context1 and Context2.

2. Ensure the database is clean before run i.e. Drop the following tables if its present in the database.
   Departments
   Employees
   __MigrationHistory

3. Set Conext1 as the startup project and follow Code First Migrations workflow to create database objects.

4. Now Set Conext2 as the startup project and follow Code First Migrations workflow to create database objects.

5. Now run the following command against the same database on which the above two applications were run.
   Select * from "__MigrationHistory"

6. Now you will be able to see that there are two contexts in the same database.
