コード例 #1
0
        public Friend Add(Friend friend)
        {
            context.Friends.Add(friend);
            context.SaveChanges();

            return friend;
        }
コード例 #2
0
 public void Remove(Friend friend)
 {
     context.Remove(friend);
     context.SaveChanges();
 }