Dinâmica linq:a Criação de um método de extensão que produz JSON resultado

StackOverflow https://stackoverflow.com/questions/50251

  •  09-06-2019
  •  | 
  •  

Pergunta

Eu estou preso tentando criar uma dinâmica linq extensão método que retorna uma seqüência de caracteres no formato JSON - eu estou usando o Sistema.Linq.Dinâmico e Newtonsoft.Json e eu não posso começar o Linq.Dinâmica para analisar a "célula=new object [] a parte".Talvez demasiado complexo?Qualquer idéias?:

O meu método Principal:

static void Main(string[] args)
{
    NorthwindDataContext db = new NorthwindDataContext();
    var query = db.Customers;
    string json = JSonify<Customer>
                    .GetJsonTable(
                        query, 
                        2, 
                        10, 
                        "CustomerID"
                        , 
                        new string[] 
                            { 
                                "CustomerID", 
                                "CompanyName", 
                                "City", 
                                "Country", 
                                "Orders.Count"
                            });
    Console.WriteLine(json);
}

JSonify classe

public static class JSonify<T>
{
    public static string GetJsonTable(
        this IQueryable<T> query, 
        int pageNumber, 
        int pageSize, 
        string IDColumnName, 
        string[] columnNames)
    {
        string selectItems =
            String.Format(@"
                        new
                        {
                            {{0}} as ID,
                            cell = new object[]{{{1}}}
                        }", 
                          IDColumnName, 
                          String.Join(",", columnNames));

        var items = new
        {
            page = pageNumber,
            total = query.Count(),
            rows =
                query
                    .Select(selectItems)
                    .Skip(pageNumber * pageSize)
                    .Take(pageSize)
        };

        return JavaScriptConvert.SerializeObject(items);
        // Should produce this result:
        // {
        //    "page":2,
        //    "total":91,
        //    "rows":
        //        [
        //        {"ID":"FAMIA","cell":["FAMIA","Familia Arquibaldo","Sao Paulo","Brazil",7]},
        //        {"ID":"FISSA","cell":["FISSA","FISSA Fabrica Inter. Salchichas S.A.","Madrid","Spain",0]},
        //        {"ID":"FOLIG","cell":["FOLIG","Folies gourmandes","Lille","France",5]},
        //        {"ID":"FOLKO","cell":["FOLKO","Folk och fä HB","Bräcke","Sweden",19]},
        //        {"ID":"FRANK","cell":["FRANK","Frankenversand","München","Germany",15]},
        //        {"ID":"FRANR","cell":["FRANR","France restauration","Nantes","France",3]},
        //        {"ID":"FRANS","cell":["FRANS","Franchi S.p.A.","Torino","Italy",6]},
        //        {"ID":"FURIB","cell":["FURIB","Furia Bacalhau e Frutos do Mar","Lisboa","Portugal",8]},
        //        {"ID":"GALED","cell":["GALED","Galería del gastrónomo","Barcelona","Spain",5]},
        //        {"ID":"GODOS","cell":["GODOS","Godos Cocina Típica","Sevilla","Spain",10]}
        //        ]
        // }

    }

}
Foi útil?

Solução

Isso é muito feio e pode haver alguns problemas com a cadeia de caracteres de substituição, mas não produz os resultados esperados:

public static class JSonify
{
    public static string GetJsonTable<T>(
        this IQueryable<T> query, int pageNumber, int pageSize, string IDColumnName, string[] columnNames)
    {
        string select = string.Format("new ({0} as ID, \"CELLSTART\" as CELLSTART, {1}, \"CELLEND\" as CELLEND)", IDColumnName, string.Join(",", columnNames));
        var items = new
        {
            page = pageNumber,
            total = query.Count(),
            rows = query.Select(select).Skip((pageNumber - 1) * pageSize).Take(pageSize)
        };
        string json = JavaScriptConvert.SerializeObject(items);
        json = json.Replace("\"CELLSTART\":\"CELLSTART\",", "\"cell\":[");
        json = json.Replace(",\"CELLEND\":\"CELLEND\"", "]");
        foreach (string column in columnNames)
        {
            json = json.Replace("\"" + column + "\":", "");
        }
        return json;
    }
}  

Outras dicas

static void Main(string[] args)
{
    NorthwindDataContext db = new NorthwindDataContext();
    var query = db.Customers;
    string json = query.GetJsonTable<Customer>(2, 10, "CustomerID", new string[] {"CustomerID", "CompanyName", "City", "Country", "Orders.Count" });
 }  

public static class JSonify
{
    public static string GetJsonTable<T>(
        this IQueryable<T> query, int pageNumber, int pageSize, string IDColumnName, string[] columnNames)
    {
        string select = string.Format("new ({0} as ID, new ({1}) as cell)", IDColumnName, string.Join(",",     columnNames));
        var items = new
        {
            page = pageNumber,
            total = query.Count(),
            rows = query.Select(select).Skip((pageNumber - 1) * pageSize).Take(pageSize)
        };
        return JavaScriptConvert.SerializeObject(items);
    }
}  

Obrigado pela rápida resposta.No entanto, observe o resultado necessário não ter nomes de propriedade na "célula" de matriz ( que é por isso que eu estava usando object[]):

"célula":["EDIGOUTERRES","Familia " Arquibaldo",...vs."célula":{"CustomerID":"EDIGOUTERRES","Nomedaempresa","Familia " Arquibaldo",...

O resultado é destinado a ser usado com JQuery grade chamado "flexify", que exige a saída neste formato.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top