Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/263.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 激动。您应该对其进行更新,以明确这一点,供将来阅读本文的人使用。我不想让它们变得比使用Json()助手序列化集合时所需的复杂。 return Json(( from s in searchResults _C#_Asp.net_Asp.net Mvc_Oop - Fatal编程技术网

C# 激动。您应该对其进行更新,以明确这一点,供将来阅读本文的人使用。我不想让它们变得比使用Json()助手序列化集合时所需的复杂。 return Json(( from s in searchResults

C# 激动。您应该对其进行更新,以明确这一点,供将来阅读本文的人使用。我不想让它们变得比使用Json()助手序列化集合时所需的复杂。 return Json(( from s in searchResults ,c#,asp.net,asp.net-mvc,oop,C#,Asp.net,Asp.net Mvc,Oop,激动。您应该对其进行更新,以明确这一点,供将来阅读本文的人使用。我不想让它们变得比使用Json()助手序列化集合时所需的复杂。 return Json(( from s in searchResults select new { orderID = s.OrderID, OrderRealID = s.OrderRealID,

激动。您应该对其进行更新,以明确这一点,供将来阅读本文的人使用。我不想让它们变得比使用Json()助手序列化集合时所需的复杂。
 return Json((
                    from s in searchResults
                    select new { 
                      orderID = s.OrderID,
                      OrderRealID = s.OrderRealID,
                      OrderStatus = s.OrderStatus,
                      OrderDate = s.OrderDate,
                      OrderVenue = s.VenueName + " - " + s.VenueLocation + " (" + s.VenueNumber + ")",
                      OrderStatusText = s.StatusOrderValue
                    }
                ), JsonRequestBehavior.DenyGet);
 public string ResultsToJson<T>(hashtable fields){
                    from s in T
                    select new { 
                      // loop through hash table
                    } }
public class OneTwoThree
{
    public string One { get; set; }
    public string Two { get; set; }
    public string Three { get; set; }
}

/// <summary>
/// Should serialize the anonymous object
/// and deserialize it into a strong type.
/// </summary>
/// <remarks>
///     An MVC JSON result on the server can use anonymous objects that are serialized
///     into strong types on a rich client.
///
///     “Making use of your JSON data in Silverlight”
///     [http://timheuer.com/blog/archive/2008/05/06/use-json-data-in-silverlight.aspx]
///
///     “ASP.NET MVC: Using dynamic type to test controller actions returning JsonResult”
///     [http://weblogs.asp.net/gunnarpeipman/archive/2010/07/24/asp-net-mvc-using-dynamic-type-to-test-controller-actions-returning-jsonresult.aspx]
///
///     “ASP.NET MVC – Unit Testing JsonResult Returning Anonymous Types”
///     [http://www.heartysoft.com/post/2010/05/25/ASPNET-MVC-Unit-Testing-JsonResult-Returning-Anonymous-Types.aspx]
///
///     “.NET 3.5: JSON Serialization using the DataContractJsonSerializer”
///     [http://pietschsoft.com/post/2008/02/NET-35-JSON-Serialization-using-the-DataContractJsonSerializer.aspx]
/// </remarks>
[TestMethod]
public void ShouldSerializeAnonymousObject()
{
    var data = new
    {
        One = "uno",
        Two = "dos",
        Three = "tres"
    };

    var result = new JsonResult
    {
        Data = data,
        ContentEncoding = Encoding.Unicode
    };

    var serializer = new JavaScriptSerializer();

    var actual = serializer.Serialize(result.Data);
    var expected = @"{""One"":""uno"",""Two"":""dos"",""Three"":""tres""}";
    Assert.AreEqual(expected, actual);

    var clientSerializer = new DataContractJsonSerializer(typeof(OneTwoThree));

    using(var stream = new MemoryStream(Encoding.Unicode.GetBytes(actual)))
    {
        var clientObject = clientSerializer.ReadObject(stream) as OneTwoThree;
        Assert.IsNotNull(clientObject);
    }
}

/// <summary>
/// Should serialize the generic dictionary
/// and deserialize it.
/// </summary>
[TestMethod]
public void ShouldSerializeGenericDictionary()
{
    var dictionary = new Dictionary<string, string>();
    dictionary.Add("One", "uno");
    dictionary.Add("Two", "dos");
    dictionary.Add("Three", "tres");

    var result = new JsonResult
    {
        Data = dictionary,
        ContentEncoding = Encoding.Unicode
    };

    var serializer = new JavaScriptSerializer();

    var actual = serializer.Serialize(result.Data);
    var expected = @"{""One"":""uno"",""Two"":""dos"",""Three"":""tres""}";
    Assert.AreEqual(expected, actual);

    var clientSerializer = new DataContractJsonSerializer(typeof(Dictionary<string, string>));

    using(var stream = new MemoryStream(Encoding.Unicode.GetBytes(actual)))
    {
        var clientObject = clientSerializer.ReadObject(stream) as Dictionary<string, string>;
        Assert.IsNotNull(clientObject);
    }
}
return Json(searchResults, JsonRequestBehavior.DenyGet);