进行操作。
client像这样发送对象
{ID:1,JSONArray:[{Name:"pooria",LastName:"Shariatzadeh"},{Name:"jon",LastName:"smith"}]}
和我的EF DB头等舱看起来像这样:
public partial class entity
{
public int ID { get; set; }
public string JSONArray { get; set; }
}
我如何植入某些东西以序列化和应对json.net
自动序列化我现在如何序列化和进行序列化JSON,我只想以适当的方式进行界面,属性或类似的事情
我的解决方案是setData的客户端中的jsonarray,并在获取数据时对其进行解析,但我想在服务器端
我随附了这个解决方案
public partial class entity
{
public int ID { get; set; }
public string JSONArray { get; set; }
public List<JSONArray> JSONArrayList
{
get {
if (Tags != null)
return JsonConvert.DeserializeObject<List<JSONArray>>(JSONArray);
else
return null;
}
set
{
if (value != null)
JSONArray = JsonConvert.SerializeObject(value);
}
}
}
public class JSONArray
{
public string Name { get; set; }
public string LastName { get; set; }
}
如果您以另一种方式拥有它,请共享