Code Archives

Install Openssl with source code

Author - Webner
|
0 Comments
|

To install Openssl, we have to perform all steps with the root user. Please check the steps below:

sudo su (Do all operation with root user)
Change the directory to your desire location
cd /var/www/html/
Make two directories
mkdir Release
mkdir Sources
Go to the Sources folder and Read more…

Migration in EF Code First

Author - Webner
|
0 Comments
|

Code First Conventions

In code first approach we create the domain classes first rather than creating the database. Initially, we need to create the domain classes having the properties and then we create the database according to the domain classes.

Database Migration – Migration is used to update the Read more…

Some Useful Code Refactoring Techniques Available In Eclipse

Author - Mamta Sharma
|
0 Comments
|

Some Useful Code Refactoring Techniques Available In Eclipse

1. RENAMING
So this feature allows you to rename variables, classes, methods, packages, folders, and almost any Java identifier. When you rename an identifier, all references to that identifier are also renamed. The Read more…