コミュニティに人を追加したいのですが、どのように行われたのかわかりませんか?
私のデータ契約は次のようになります。
[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つの質問をより明確にすることを願っています。