Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
270 views
in Technique[技术] by (71.8m points)

asp.net mvc - Constructor for object model similar from entity

I'm trying my best to follow some MVC guidelines and for now, I have created a model with the fields I need from an entity I have. I have created the following Model class:

    public class PersonStyle
       {
            public string Name  { get; set; }
            public int? Age     { get; set; }
            public string City  { get; set; }
            public string Style { get; set; }
        }

My Entity is sometihng like:

     public class PersonOE
        {
            public string Name  { get; set; }
            public int? Age     { get; set; }
            public string City  { get; set; }
        }

Im trying to build a constructor for the following:

  PersonON personBus = new personBus();
  List<PersonStyle> personStyleList = new List<PersonStyle>(personBus.getPeople()); //getPeople(); returns a PersonOE list

For this all, I need suggestions on how to create the PersonStyle constructor that will put "null" into the only different variable from the PersonOE model.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

All you need to do is use LINQ to generate your properties. Though, adding your Style to each of them could get a little harder to deal with, but you haven't given any input on where they're coming from. This is a quick and easy way to convert from your data to model objects.

List<PersonStyle> personStyleList = personBus.GetPeople()
                                        .Select(p => new PersonStyle {
                                            Name = p.Name,
                                            Age = p.Age,
                                            City = p.City
                                        });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...