どこから始めればよいかわからない、返された結果をjsonに書きたい
現在のコード:
   public Setting TestSettings(Example _example, String type)
    {
        var results = _example.GetExample("Testing");
        return results;
    }
設定機種
string Description { get; set; }
Guid? Guid1 { get; set; }
Guid? Guid2 { get; set; }
string Key { get; set; }
string Value { get; set; }
GetExample
public Setting GetExample(string key)
        {
            using (var db = MyDataContext.StoredProcs)
            {
                return db.GetExample<Setting>(key, _curGuid1, _curGuid2, SettingExtensions.SettingFactory());
            }
    }