また会ったね。
エンティティ フレームワークを使用して、WebApi コントローラーに JSON 出力があります。ここでは次のようになります。
"Answers":[{"Text":"text text text"},{"Text":"text text text"},{"Text":"text text text"}]}]
私はそれを次のように示したい:
"Answers":["text text text","text text text","text text text"]
これが私のエンティティモデルです(回答クラス):
public class Answers
{
[Key]
[JsonIgnore]
public int Id { get; set; }
public string Text { get; set; }
// An Answers related to a Question
public virtual Question Question { get; set; }
}