Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In standard .NET MVC we have our Domain classes and we have ModelView classes. Now, with ASP.Net Web API I suppose there is no need for ModelView classes (since we are returning data) but should we return (serialized) Domain classes directly or there is a need for something in between?

// Domain class
public class User {
  public int Id {get;set;}
  public string FirstName {get;set;}
  public string LastName {get;set;}
}

// inter class
public class ProductModel {
  public int Id {get;set;}
  public string FirstName {get;set;}
  public string LastName {get;set;}
  public string FullName {get {return String.Format("{0} {1}", FirstName, LastName);}}
}

// Controller V1 returns Product    
public class UserController : ApiController 
{
   public Product GetProduct(int id) {...}
}

// Controller V2 returns ProductModel     
public class UserController : ApiController 
{    
   public ProductModel GetProduct(int id) {...}
}
share|improve this question

1 Answer

Exposing your domain model in a API is rarely a good idea.

If you are the only one who will be consuming the API and you can be sure that you will deploy updates to the client and the server at exactly the same frequency, then you may be able to take this shortcut, however, I wouldn't recommend it.

share|improve this answer
Sample? What to use? Model classes mapped from domain classes or...? – Andrej Kaurin Nov 8 '12 at 9:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.