Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8015603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:18:01+00:00 2026-06-04T20:18:01+00:00

I have a database table with a computed column. The computed column merges two

  • 0

I have a database table with a computed column. The computed column merges two names (first and last) into a single display name. In the code below, I want to specify the value of the computed column, named DisplayName. How do I do this? Thanks!

FYI, this is MVC Beta 4.

<div class="editor-label">
    @Html.LabelFor(model => model.PdId, "Pd")
</div>
<div class="editor-field">
    @Html.DropDownList("PdId", String.Empty)
    @Html.ValidationMessageFor(model => model.PdId)
</div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T20:18:02+00:00Added an answer on June 4, 2026 at 8:18 pm

    Use a view model and a strongly typed view and DropDownListFor helper. Can’t see your code, so here’s an untested psuedo:

    public class MyViewModel
    {
        public int PdId { get; set; }
        public IEnumerable<SelectListItem> Names { get; set; } 
    }
    

    populate view model from controller

    public ActionResult VIewName(?)
    {
        var people =  // query    
        var model = new MyViewModel
        {
           PdId = people.nameId,
           FullNames = people.Select(x => new SelectListItem
            {
                 Value = x.nameId.ToString(),
                 Text = x.FirstName + " " + x.LastName
            })
        };
        return View(model);
    }
    

    In view use the strongly typed DropDownListFor helper

    @model MyViewModel
    
    @Html.DropDownListFor(
        x => x. PdId,
        Model. FullNames
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two database tables, Team ( ID, NAME, CITY, BOSS, TOTALPLAYER ) and
I have a database table with the primary column defined as: ID bigint identity
i have database table like this +-------+--------------+----------+ | id | ip | date |
that my problem: I have database table like that: id (AI) market_id 1 6
I have one database table which contains 8 columns. One of the columns is
I have a database table using an enum. This is already working with hibernate
i have a database table of website links. i have another table of tags,
I have a database table where the user marks files to be downloaded. Subsequently,
I have a database table with a field that I need to read from
I have a database table of zipcodes with their Lat/Longs. I'm trying to find

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.