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

  • Home
  • SEARCH
  • 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 7789963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:27:06+00:00 2026-06-01T21:27:06+00:00

I have an ASP.NET MVC solution and also a WCF service for data access.

  • 0

I have an ASP.NET MVC solution and also a WCF service for data access. In my WebUI I have some enums like this:

public enum CompanyColumsEnumViewModel
{
    CompanyName,
    CompanyPostCode,
    CompanyCity
}

This enum allows me to perform a search based on specific columns. For example: searching for ‘2000’ in the CompanyPostCode field.

When a user submit a search formular, I call my service and I pass several parameters like this:

var companies = _requestServiceClient.GetCompanies(term, column);

Where term = ‘2000’ and column = ‘CompanyPostCode’

My question is what is the best:

  • pass column as en enumeration in the web service? (1)

  • pass column as simple string in my web service? (2)

    (1) IEnumerable< Company> GetCompanies(string term, CompanyColumsEnumViewModel column)

    (2) IEnumerable< Company> GetCompanies(string term, string column)

If I work with enumerations I have to declare these enumerations on both side: one in my WebUI and one in my web service?

Thanks.

  • 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-01T21:27:07+00:00Added an answer on June 1, 2026 at 9:27 pm

    If your enum is part of your ServiceContract (as in it exists as a parameter) then you need to attribute it up as a DataContract:

    [DataContract]
    public enum CompanyColumsEnumViewModel
    {
        [EnumMember]
        CompanyName,
    
        [EnumMember]
        CompanyPostCode,
    
        [EnumMember]
        CompanyCity
    }
    

    Then, you can discover this in a service reference on the client side. This, I think, would be prefered to a string column.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my scenario. I have an ASP.NET MVC solution with 3 projects. Data,
I have a route in my asp.net mvc 2 site that looks like this
We have an ASP.Net MVC solution built in VS2008 and TFS2008. We use TFS
I have an ASP.NET MVC 3 Solution(C#) Containing multiple projects. There is a services
We have an ASP.Net MVC 1.0 solution developed using Visual Studio 2008 and .net
I've just created a fresh ASP.NET MVC 4 solution and have added 3 Areas
I have a solution ASP.NET MVC where I manage materials with CRUD functionalities. Each
I have a new solution that is an ASP.NET MVC 2.0 application. I have
Hi I have a Visual Studio solution and an ASP.NET MVC project that uses
I have a Solution with several projects in it, including two asp.net mvc projects

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.