Created
November 2, 2016 15:19
-
-
Save mskutta/55d3717c7ebab4c895271e3b4181f8d6 to your computer and use it in GitHub Desktop.
Sorting Sitecore Items by Popularity using xDB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Sitecore.Analytics.Aggregation.Data.Model; | |
namespace Website.Logic.Analytics.Views | |
{ | |
public class ViewKey : DictionaryKey | |
{ | |
public Guid ItemId { get; set; } | |
public DateTime Date { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment