Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Marky 26 posts 65 karma points
    Feb 07, 2019 @ 08:18
    Marky
    0

    How to get property values from multiple Ids

    Hi All,

    I have a compare function which has a 3 items to compare.

    My problem is how can I get their properties with their corresponding ID.

    /// Umbraco/Api/Search/ComparisonKeyValues?ids=2874,2875,2876
    public List<KeyValuePair<int, string>> ComparisonKeyValues(string ids)
    {
        // what should I put here...
    }
    

    Or what shoul I put after public ?

    Any help for this, thanks in advance.

    I'm new in C# and Umbraco

    Thanks

    Marky

  • Marky 26 posts 65 karma points
    Feb 07, 2019 @ 09:27
    Marky
    0

    What I've done is...

    ///umbraco/Api/search/ComparisonKeyValues?ids=2874,2875,2876
    public List<KeyValuePair<int, string>> ComparisonKeyValues(string ids)
    {
        if (!string.IsNullOrEmpty(ids))
        {
            var nodes = ids.Split(',').ToList().TypedContentList();
            return nodes.Select(x => new KeyValuePair<int, string>(x.Id, x.GetPropertyValue<string>("title"))).ToList();
        }
        return new List<KeyValuePair<int, string>>();
    }
    

    But I only get the ID & title..

    I want also get the productImage

    How can I do this?

    Any help?

    Thanks

    Marky

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Feb 07, 2019 @ 09:34
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies