4

コミュニティに人を追加したいのですが、どのように行われたのかわかりませんか?

私のデータ契約は次のようになります。

[DataContract(Name = "Community")]
public class Community
{

    public Group() 
    {
        People = new List<Person>();
    }
    [DataMember(Name = "CommunityName")]
    public string CommunityName { get; set; }
    public List<Person> People { get; set; }

}
[DataContract(Name = "Person")]
public class Person
{
    [DataMember(Name = "PersonName")]
    public string PersonName { get; set; }
}

私のサービスでは、次のような人やコミュニティを追加できます。

List<Community> Communitys = new List<Community>();
List<Person> people = new List<Person>();
public void AddCommunity(Community community)
{
     Communitys.Add(community);
}
public void AddPerson(Person person)
{
     people.Add(person); 
}

public void AddPersonToCommunity(Person person, Community community)
{
    //not sure what to do here
} 

しかし、私は人をコミュニティに参加させる方法がわかりません

public void AddPersonToCommunity(Person person, Community community)
{
    //community.CommunityName(Person.Add);?
} 

そして、私はウィンドウフォームを持っています。これは、人またはコミュニティのいずれかをPOSTすると、次のように実行されます。

{
    StringBuilder Community = new StringBuilder();
    Community.AppendLine("<Community>");
    Community.AppendLine("<CommunityName>" + this.textBox4.Text + "</CommunityName>");
    Community.AppendLine("</Community>");

しかし、(完了したら)AddPersonToCommunityを取得して、コミュニティに人を追加するための文字列ビルダーをどのように作成しますか?

    {
        StringBuilder CommunityAddPerson = new StringBuilder();
        CommunityAddPerson.AppendLine("<Community&{1}>");
        CommunityAddPerson.AppendLine ......
        CommunityAddPerson.AppendLine("<CommunityName>" + this.textBox4.Text + "</CommunityName>");
        CommunityAddPerson.AppendLine("</Community>");

これが私が推測する1つの2つの質問をより明確にすることを願っています。

4

2 に答える 2

1

私はあなたが言っていることに基づいて、あなたの方法は次のように見えるかもしれないと思います:

public void AddPersonToCommunity(string person, string communityName)
{
    var result = communities.Where(n => String.Equals(n.CommunityName, communityName)).FirstOrDefault();
    if (result != null)
    {
        result.Add(new Person() { Name = person });
    }
} 

POSTデータは次のようになります。

<Community>
  <CommunityName>CrazyTown</CommunityName>
  <People>
     <Person>Moe Howard</Person>
  </People>
</Community>
于 2012-04-06T20:14:22.840 に答える
0

コミュニティに人を追加するメソッドをいつでも追加できます。

public void AddPersonToCommunity(Person person, Community community)...

また

public void AddPersonToCommunity(string personName, string communityName)...
于 2012-04-06T16:25:00.123 に答える