Difference between DropDownlist or DropDownListFor Html helper

asp.netasp.net MvcEntity Framework

asp.net Problem Overview


It seems weird that I couldn't find an explanation of the difference between those two helpers, so I would assume that is something obvious but I missed.

Basically I am trying to decide which one I should use for my case, with the following simple Model:

public class Booking
    {
        public int ID { get; set; }
        public Room Room { get; set; }
        public DateTime StartTime { get; set; }
        public DateTime EndTime { get; set; }
        public ICollection<Equipment> Equipments { get; set; }
        public string Who { get; set; }
    }

and I want display a simple Room DropDownlist for Adding and Editing Booking record.

After doing a lots of Google around, it seems that I probably need a DropDopwListFor, but not sure why and how?

asp.net Solutions


Solution 1 - asp.net

Take the following two examples:

@Html.DropDownListFor(
    x => x.EquipmentId, 
    new SelectList(Model.Equipments, "Id", "Text")
)

and:

@Html.DropDownList(
    "EquipmentId", 
    new SelectList(Model.Equipments, "Id", "Text")
)

It is obvious that with the second example the name of the property you are binding the dropdown to is hardcoded as a magic string. This means that if you decide to refactor your model and rename this property Tooling support that you might be using has no way of detecting this change and automatically modifying the magic string you hardcoded in potentially many views. So you will have to manually search & replace everywhere this weakly typed helper is used.

With the first example on the other hand we are using a strongly typed lambda expression tied to the given model property so tools are able to automatically rename it everywhere it is used if you decide to refactor your code. Also if you decide to precompile your views you will get a compiler time error immediately pointing to the view that needs to be fixed. With the second example you (ideally) or users of your site (worst case scenario) will get a runtime error when they visit this particular view.

Strongly typed helpers were first introduced in ASP.NET MVC 2 and the last time I used a weakly typed helper was in an ASP.NET MVC 1 application long time ago.

Solution 2 - asp.net

DropDownListFor will automatically select the selected value by using the specified property:

// Will select the item in model.Equipments that matches Model.EquipmentId
@Html.DropdownListFor(m => m.EquipmentId, Model.Equipments); 

Another comment:

Don't have ICollection<Equipment> Equipments in your view model. You should have a property that returns an IEnumerable<SelectListItem>.

Solution 3 - asp.net

When you want to add a view (aspx file) where this DropDownList or DropDownListFor will be inside, rightclick->add view then select "Create a strongly typed view" then in list select Booking class. After that add this page.

You can write in it as follows:

@Html.DropdownListFor(m => m.Equipments , Model.Equipments);

because we add strongly typed view as Booking, you can have:

m => m.ID, m => m.Room, m => m.StartTime

... etc.

In your services you can have methods to take data from database, then use this service's method in your controller to pass data from database to view. You can use ViewData in your controller:

ViewData["Equipments"] = new servicename().getdatalistfromdatabase().AsEnumarable();

Putting AsEnumarable() at the end of your list taken from database makes it IEnumarable.

Then in your view, you can also have :

@Html.DropdownList("MyEquipments" , ViewData["Equipments"]);

A link on ViewData usage: http://msdn.microsoft.com/en-us/library/dd410596.aspx

I hope that helps you.

Solution 4 - asp.net

DropdownListFor is support strongly type and it name assign by lambda Expression so it shows compile time error if have any error.

DropdownList not support this.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPaul LView Question on Stackoverflow
Solution 1 - asp.netDarin DimitrovView Answer on Stackoverflow
Solution 2 - asp.netjgauffinView Answer on Stackoverflow
Solution 3 - asp.netcemsazaraView Answer on Stackoverflow
Solution 4 - asp.netSabuj SenView Answer on Stackoverflow