如何将一个对象序列化为查询字符串格式? 我似乎找不到答案在谷歌。谢谢。
下面是我将序列化为示例的对象。
public class EditListItemActionModel
{
public int? Id { get; set; }
public int State { get; set; }
public string Prefix { get; set; }
public string Index { get; set; }
public int? ParentID { get; set; }
}