ASP.Net MVC 2 is it possible to get the same instance of model(with slight changes) in HttpPost meth
- by jjjjj
Hi
I have a complex entity User:
public class User : BaseEntity
{
public virtual Taxi Taxi { get; set; } --> That is why i call it "complex"
public virtual string Login { get; set; }
public virtual string Password { get; set; }
}
where Taxi is a parent of User (Taxi has-many Users):
public…