Thursday, October 17, 2013

Cool Resharper Features Part-2

This post will be part-2 of first post Cool Resharper Features Part-1. In this post we are also going to learn some other cool features that resharper is providing. Following are some of features that resharper is providing.

1) Move to another file to match type name:

This feature makes you very productive when you need to create a new class. Suppose with normal visual studio you need to create a new class with new file then you need to do via file menu –> Add new item and then select class. Here you can do very easily without having all this stuff. Just write you class after class in any .cs file like below.


Movetoanother filetomatchtypename

In above image you can see that I have created a employee class. Now when you put a cursor on employee class name resharper will open a popup or you can press ALT + R and it will open a popup like this.

Movetoanother filetomatchtypename2

And once you click on this it will create a file name with Employee.cs and move class code to that file.

Movetoanother filetomatchtypename3

2) Extract Interface(Refactor Menu):

This features comes quite handy when you are working with interfaces. Here you can have interface extracted from class. Let’s take same example of employee class. Now I am pressing Ctrl-Shift-R to open refactor menu.

ExtractInterface

Now once you click on this.It will open a popup with some options like following.

ExtractInterface2

Here it will ask for Interface name, Where we want to move and what member we need to create once you click. There also button given to select all public or dependent member.Once you select print click on next it will extract a interface in new file like following.

ExtractInterface3

Here for demo purpose I have not selected move to another file so that I can show both class and interface implementation but you could create a new file also with the same class.

3) Go To Implementation:

If we are using interfaces and we want to find a interface is implemented in how many class or we want to find the class which implement this interface this feature becomes quite handy. There are some other use of this feature also here it’s very productive.

For example, I want to find which class has implementation of IEmployee interface as above example then I need right click and select “Go To Implementation” or I can directly do with shortcut Ctrl + Shift + Alt + B.
Once you right click a menu appears like following.

GoToImplementation

Once you click on this. It will navigate to Employee class which implements this interface.

GoToImplementation2

That’s it. Hope you like I will post some other features of resharper in my future posts.Stay tuned for more.. Smile
Share:
Saturday, October 12, 2013

Cool Resharper features part -1

I have been using Jetbrain’s resharper since last four years and it’s been my default Visual Studio plugin for visual studio. After this much of experience of resharper I must say if resharper is not there I would not have that much productive with visual studio. Working with it is a pleasure. I this post I am going to explain some cool resharper features.

Resharper uses two keyboard schemes Visual Studio or Intelli IDEA scheme. In this post I am going to use Intelli IDEA scheme. The only difference between two key map scheme is keyboard shortcut. Some Visual Studio short cut will be override by Resharper.

1) ALT + Enter:

It’s a magic key for resharper you can have any feature with ALT+ Enter whether its refactoring, code completion or anything. You can use ALT + Enter for anything. For example you have some name space un used and you want to remove namespace just press ALT + Enter and it will have popup like following.

ALTEnter

Once you click on this and it will remove unused namespace. Same way I have a class called Student Repository and I have one private variable which I want to initialize with constructor then I just need to press ALT+ Enter on that line and it will open a popup like following.

ALTEnter2


Once you click on Initialize field from constructor(s) parameter and it will create a code like following.

ALTEnter3

2) GO to Type:

This is an awesome feature of navigation. You can have either from resharper menu->Navigation GO to Type or you can have Ctrl + N short cut for intelli IDEA scheme. Once you click it will open a popup and whatever you type it find matching list of type and once you click on type you will be there.

GoToType

3) Find Usage:

This is also an awesome feature for finding usage of particular type or variable. You can right click any type and click on find usage or you have short cut key ALT + f7.

FindUsage

Once you click on Find Usage it will list all load all the find result and you click on any one and you can go to there file.

FindUsage2

3) Smart symbol completion:

When you use Ctrl + Space it will suggest you the option to complete symbol and save lots of keyboard stroke.

SmartCodeCompletion

4) Smart code selection:

With Ctrl + W you can select current type and again you press Ctrl + W it will select line and again you press Ctrl + W you can select method.

SmartCodeSelection
That’s it. This are some feature that I am using I will have more feature list in forth coming posts. Hope you like it. Stay tuned for more.Smile
Share:
Wednesday, October 9, 2013

Database diagram support objects cannot be installed because this database does not have a valid owner- SQL server error solution

Before some days, I have copied one database from the one of server and restored it on my machine. The server was not having ‘sa’ user login and I was having the ‘sa’ user in my local machine. The database was restored perfectly with no problem but when I tried to create a database diagram I got following error.
Database diagram support objects cannot be installed because this database does not have a valid owner. To continue, first use the Files page of the Database Properties dialog box or the ALTER AUTHORIZATION statement to set the database owner to a valid login, then add the database diagram support objects.
After digging into that I found that the database does not have any valid owner and that’s why its generating errors. To resolve this error following is a step to change or add owner of database.

Step-1:


Right click on your database and click properties it will open a dialog like following. Goto-> Fiile Tab.

DatabasePropertiesDatabaseOwner

Step-2:


Click on .. button it will open a dialog box like following.

BrowseDatabasePropertiesDatabaseOwner

Step-3:


Click on browse button. It will open a list of user available for SQL Server.You need to select user whom you want to make database owner. In my case I want to make ‘sa’ user database owner so that I have selected like following.

SaDatabaseOwner

After selecting user you need to close all dialog via pressing ‘OK’ buttons. That’s it your database is now having proper owner and error for database diagram is gone now.  Hope you like it. Stay tune for more..
Share:
Sunday, September 29, 2013

Getting Started with NHibernate and ASP.NET MVC- CRUD Operations

In this post we are going to learn how we can use NHibernate in ASP.NET MVC application.

What is NHibernate:


Nhibernate
ORMs(Object Relational Mapper) are quite popular this days. ORM is a mechanism to map database entities to Class entity objects without writing a code for fetching data and write some SQL queries. It automatically generates SQL Query for us and fetch data behalf on us.

NHibernate is also a kind of Object Relational Mapper which is a port of popular Java ORM Hibernate. It provides a framework for mapping an domain model classes to a traditional relational databases. Its give us freedom of writing repetitive ADO.NET code as this will be act as our database layer. Let’s get started with NHibernate.

How to download:


There are two ways you can download this ORM. From nuget package and from the source forge site.
  1. Nuget - http://www.nuget.org/packages/NHibernate/
  2. Source Forge-http://sourceforge.net/projects/nhibernate/

Creating a table for CRUD:


I am going to use SQL Server 2012 express edition as a database. Following is a table with four fields Id, First Name, Last name, Designation.

NhibernateASPNETMVCTable

Creating ASP.NET MVC project for NHibernate:


Let’s create a ASP.NET MVC project for NHibernate via click on File-> New Project –> ASP.NET MVC 4 web application.

NhibernateASPNETMVCProject

Installing NuGet package for NHibernate:


I have installed nuget package from Package Manager console via following Command.

NhibernateNugetPackage

It will install like following.

PackageManagerConsoleNhibernate

NHibertnate configuration file:


Nhibernate needs one configuration file for setting database connection and other details. You need to create a file with ‘hibernate.cfg.xml’ in model Nhibernate folder of your application with following details.
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
  <session-factory>
    <property name="connection.provider">
      NHibernate.Connection.DriverConnectionProvider
    </property>
    <property name="connection.driver_class">
      NHibernate.Driver.SqlClientDriver
    </property>
    <property name="connection.connection_string">
      Server=(local);database=LocalDatabase;Integrated Security=SSPI;
    </property>
    <property name="dialect">
      NHibernate.Dialect.MsSql2012Dialect
    </property>
  </session-factory>
</hibernate-configuration>

Here you have got different settings for NHibernate. You need to selected driver class, connection provider as per your database. If you are using other databases like Orcle or MySQL you will have different configuration. ThisNHibernate ORM can work with any databases.

Creating a model class for NHibernate:


Now it’s time to create model class for our CRUD operations. Following is a code for that. Property name is identical to database table columns.
namespace NhibernateMVC.Models
{
    public class Employee
    {
        public virtual int Id { get; set; }
        public virtual string FirstName { get; set; }
        public virtual string LastName { get; set; }
        public virtual string Designation { get; set; }
    }
}

Creating a mapping file between class and table:



Now we need a xml mapping file between class and model with name “Employee.hbm.xml” like following in Nhibernate folder.
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" auto-import="true" assembly="NhibernateMVC" namespace="NhibernateMVC.Models">
  <class name="Employee" table="Employee" dynamic-update="true" >
    <cache usage="read-write"/>
    <id name="Id" column="Id" type="int">
      <generator class="native" />
    </id>
    <property name="FirstName" />
    <property name="LastName" />
    <property name="Designation" />
  </class>
</hibernate-mapping>

Creating a class to open session for NHibernate:


I have created a class in models folder called NHIbernateSession and a static function it to open a session for NHibertnate.
using System.Web;
using NHibernate;
using NHibernate.Cfg;

namespace NhibernateMVC.Models
{
    public class NHibertnateSession
    {
        public static ISession OpenSession()
        {
            var configuration = new Configuration();
            var configurationPath = HttpContext.Current.Server.MapPath(@"~\Models\Nhibernate\hibernate.cfg.xml");
            configuration.Configure(configurationPath);
            var employeeConfigurationFile = HttpContext.Current.Server.MapPath(@"~\Models\Nhibernate\Employee.hbm.xml");
            configuration.AddFile(employeeConfigurationFile);
            ISessionFactory sessionFactory = configuration.BuildSessionFactory();
            return sessionFactory.OpenSession();
        }
    }
}

Listing:


Now we have our open session method ready its time to write controller code to fetch data from the database. Following is a code for that.
using System;
using System.Web.Mvc;
using NHibernate;
using NHibernate.Linq;
using System.Linq;
using NhibernateMVC.Models;

namespace NhibernateMVC.Controllers
{
    public class EmployeeController : Controller
    {

        public ActionResult Index()
        {
            using (ISession session = NHibertnateSession.OpenSession())
            {
                var employees = session.Query<Employee>().ToList();
                return View(employees);
            }
           
        }
    }
}

Here you can see I have get a session via OpenSession method and then I have queried database for fetching employee database. Let’s create a new for this you can create this via right lick on view on above method.We are going to create a strongly typed view for this.

Getting Started with NHibernate and asp.net mvc

Our listing screen is ready once you run project it will fetch data as following.

EmployeeListingusingNhibernateandaspnetmvc

Create/Add:


Now its time to write add employee code. Following is a code I have written for that. Here I have used session.save method to save new employee. First method is for returning a blank view and another method with HttpPost attribute will save the data into the database.
public ActionResult Create()
{
    return View();
}

      
[HttpPost]
public ActionResult Create(Employee emplolyee)
{
    try
    {
        using (ISession session = NHibertnateSession.OpenSession())
        {
            using (ITransaction transaction = session.BeginTransaction())
            {
                session.Save(emplolyee);
                transaction.Commit();
            }
        }

        return RedirectToAction("Index");
    }
    catch(Exception exception)
    {
        return View();
    }
}

Now let’s create a create view strongly typed view via right clicking on view and add view.

AddViewwithNhibertnateandaspnetmvc

Once you run this application and click on create new it will load following screen.

AddViewScreenwithNhibernateandaspnetmvc

Edit/Update:


Now let’s create a edit functionality with NHibernate and ASP.NET MVC. For that I have written two action result method once for loading edit view and another for save data. Following is a code for that.
public ActionResult Edit(int id)
{
    using (ISession session = NHibertnateSession.OpenSession())
    {
        var employee = session.Get<Employee>(id);
        return View(employee);
    }
   
}


[HttpPost]
public ActionResult Edit(int id, Employee employee)
{
    try
    {
        using (ISession session = NHibertnateSession.OpenSession())
        {
            var employeetoUpdate = session.Get<Employee>(id);

            employeetoUpdate.Designation = employee.Designation;
            employeetoUpdate.FirstName = employee.FirstName;
            employeetoUpdate.LastName = employee.LastName;

            using (ITransaction transaction = session.BeginTransaction())
            {
                session.Save(employeetoUpdate);
                transaction.Commit();
            }
        }
        return RedirectToAction("Index");
    }
    catch
    {
        return View();
    }
}

Here in first action result I have fetched existing employee via get method of NHibernate session and in second I have fetched and changed the current employee with update details. You can create view for this via right click –>add view like below. I have created a strongly typed view for edit.

EditViewwithNhibernateandaspnetmvc

Once you run code it will look like following.

EditViewScreenwithNhibernateandaspnetmvc

Details:


Now it’s time to create a detail view where user can see the employee detail. I have written following logic for details view.
public ActionResult Details(int id)
      {
          using (ISession session = NHibertnateSession.OpenSession())
          {
              var employee = session.Get<Employee>(id);
              return View(employee);
          }
      }

You can add view like following via right click on actionresult view.

Detailsviewwithnhibernateandaspnetmvc

now once you run this in browser it will look like following.

Delete:


Now its time to write delete functionality code. Following code I have written for that.
public ActionResult Delete(int id)
{
    using (ISession session = NHibertnateSession.OpenSession())
    {
        var employee = session.Get<Employee>(id);
        return View(employee);
    }
}

       
[HttpPost]
public ActionResult Delete(int id, Employee employee)
{
    try
    {
        using (ISession session = NHibertnateSession.OpenSession())
        {
            using (ITransaction transaction = session.BeginTransaction())
            {
                session.Delete(employee);
                transaction.Commit();
            }
        }
        return RedirectToAction("Index");
    }
    catch(Exception exception)
    {
        return View();
    }
}

Here in the above first action result will have the delete confirmation view and another will perform actual delete operation with session delete method.

Deleteviewwithaspnetmvcandnhibernate

When you run into the browser it will look like following.

DeleteScreenwithaspnetmvcandnhibernate

That’s it. It’s very easy to have crud operation with NHibernate. Stay tuned for more.
Share:
Sunday, September 8, 2013

DotNetJalps- My 600th blog post!!

I don’t know how I have reached there but woohoo!! I am writing my 600th blog post. I feel very proud writing this blog post. This is a great journey and I have learned lots of things during this great journey.

First of all I like to thank my family members my family members for continuous support they are providing me to maintain this blog and supporting that everything I do. On this occasion I would like to thank all the readers and visitors of this blog without your love and support I could not have been achieved what I am. You are the inspiration for me to writing blogs.

600blogpost

I would also like to thanks all my friends, colleagues and employers without there it was not possible to achieve this.

Again I would also like thank all the people who have ever read post , retweeted a  tweet,liked a facebook status, left a comment, repinned a pin, share a link of my blog and recommended a link  and a friend.

If you want to get this blog update on your email. Please subscribe to my blog feeds. My feeds link is

http://feeds.feedburner.com/DotNetJalps.

Thank you again for reading this..Stay tuned for more.
Share:

Code Lens in Visual Studio 2013

This post will be a part of Visual Studio 2013 features series.

Microsoft has recently launched a Preview version of Visual Studio 2013 and I am using that more then a month now and discovering new features every day. In this blog post we will learn about code lens in Visual Studio 2013.

When you launch a code view you view in Visual Studio 2013. You will notice the references information show on the top of each of methods.

VisualStudio2013References


Once you mouse over this you will get a lens popup where you can find this information of references of a method.

VisualStudio2013CodeLens

Once you click on any method it will show a glimpse of code where it used.

DiggingOfMethodInVisualStudio2013

Once you double click this it will go to the page where code is written.

CodeWrittenVisualStudio2013

It is indeed a useful feature when you do code review or dig into code. Hope you like it. Stay tuned for more…
Share:
Saturday, September 7, 2013

Project Management National Conference 2013

banners for blogs 3

Project Management Institute of India (www.pmi.org.in) organizing a event for project managers on 27th and 28th September at Gurgaon. It will be a great event for all the aspiring project managers. Last year more then thousand of delegates attended this annual event to reap benefits. This year also I would also like to encourage you to participate and gain knowledge.



Image 01

You should attend this event because..
  • You will get a chance to meet lots of people around country with same position It’s a great way to extend your network.
  • 11 visionary speakers sharing their knowledge including Dr. Shashi Tharoor, Mr. Arjun Maira, Mr. Nandan Nilekani , Swami Sukhabodhananda and others on the same podium.
  • 2 Projects will presented as case studies.
  • 14 paper presentations by experts.
Following is a link from where you can have your registration and get more information
http://pmi.org.in/pmconf2013/?utm_source=blogger&utm_medium=blogs&utm_campaign=p005#


Share:

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews