- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在执行 LINQ 查询以从数据库、年龄和日期中获取 2 个字段中的所有值。我想在图表上显示 5 个最高年龄的数字。为此,我试图将年龄和日期存储在 2 个单独的列表 ageList 和 dateList 中。
最初,在将每个列表中的值与索引进行比较时,与年龄和日期的关系是正确的。例如:
存储在 ageList.ElementAt(0) 中的年龄将是 dateList.ElementAt(0) 中日期的正确值。
但由于我要获得 5 个最高年龄数字,因此我需要对 ageList 列表进行排序。通过这样做,我将失去 2 个列表之间的匹配。
我尝试将数据存储在 SortedDictionary 中,而不是其中的键是年龄,值是日期。问题是它不允许重复的键。在我的例子中,我需要重复的键,因为多个年龄可以相同,日期也可以相同。
有什么办法解决这个问题吗?
我的代码试图用字典存储。当它存储重复的键时,它会抛出异常。
//Linq query
var xChartData = from x in db.Person
select new { x.Age, x.Date };
SortedDictionary<double, DateTime> topAgeDict = new SortedDictionary<double, DateTime>();
//Storing in Dictionary
foreach (var x in xChartData)
{
topAgeDict.Add(x.Age, x.Date); //Exception caused when repeated values
}
Dictionary<string, string> stringDict = new Dictionary<string, string>();
//store data as string for chart purposes
foreach (var x in topAgeDict)
{
stringDict.Add(x.Key.ToString(), x.Value.ToString());
}
List<string> ages = new List<string>();
List<string> dates = new List<string>();
//storing the dictionary key and value in List for element access.
ages = stringDict.Keys.ToList();
dates = stringDict.Values.ToList();
//to store only the top 5 results. This will be the data used in chart.
List<string> topFiveAge = new List<string>();
List<string> topFiveDate = new List<string>();
for (int x=1; x <= 5; x++)
{
topFiveAge.Add(ages.ElementAt(ages.Count - x));
topFiveDate.Add(dates.ElementAt(dates.Count - x));
}
//Chart
var topAgefilePath = Server.MapPath("~/Chart_Files/topAge.jpg");
if (System.IO.File.Exists(topAgefilePath))
{
System.IO.File.Delete(topAgefilePath);
}
var ageChart = new Chart(580, 400);
ageChart.AddTitle("Top Age");
ageChart.AddSeries(
chartType: "column",
xValue: topFiveDate,
yValues: topFiveAge
);
ageChart.Save(topAgefilePath);
最佳答案
// top 5 oldest persons
var xChartData = (from x in db.Person
order by x.Age descending
select new { x.Age, x.Date })
.Take (5);
而且我认为没有真正的理由将它分成两个 List<>
关于c# - 具有重复键的 KeyValuePair,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33707413/
我有一个 List> .我想知道 KeyValuePair谁拥有最大值 Key . 但是,我想获取 key 的值。不仅是 key 。 我能做到: int myValue = myListe.Max(
C#我在我的主 KeyValuePair 中使用 KeyValuePair 作为键。这是我的问题: 如果我有“KeyValuePair”,声明如下: KeyValuePair varName = ne
在 C# 中,如何将 KeyValuePair 转换为 KeyValuePair?我尝试了以下但它不起作用: public static KeyValuePair DoTheCast(KeyValue
以这种糟糕的数据结构结束: List>> 它不太可能变得很大(我估计 > 这很容易在 .NET 2.0 中编写 - 它基本上只是一个值的三元组,而不是在 KeyValuePair 中有 2 个。不过,
查看System.Collections.Generic.Dictionary , 它清楚地实现了 ICollection> ,但没有所需的“void Add(KeyValuePair item)”功
是否可以使用自定义结构来代替 KeyValuePair? 而不是 For Each kvp As KeyValuePair(Of class1,class2) In myDict Dim c1 A
我们如何验证 (.NET 2) 如果 KeyValuePair是否已分配值? Dim pair as KeyValuePair(Of A, B) = Nothing if pair.??? Then
我的 list返回 显然。如何在我的 KeyValuePair 中附加第二个字符串并添加我从第二次数据库调用返回的 ID? // Database calls here KeyValu
编辑:文化 这些内部操作表明不变文化 OrdinalIgnoreCase最合适。 KeyValuePair 是密封的。如果我有 var a = KeyValuePair("foo",1)和 var b
我正在用 C#/.NET 4.5 编写一个应用程序,我有一个定义如下的字典: Dictionary d = new Dictionary(); 我的整数键是连续且唯一的,除了空字符串外,我的值也将是唯
我正在执行 LINQ 查询以从数据库、年龄和日期中获取 2 个字段中的所有值。我想在图表上显示 5 个最高年龄的数字。为此,我试图将年龄和日期存储在 2 个单独的列表 ageList 和 dateLi
我有一个从数据库中填充的字典。 如果只返回一条记录,如何访问KeyValuePair? 我有这个代码: Dictionary CandidatePlatypiDict = PlatypusID > 0
假设我有 List> d 我知道字符串,但我想找到它的整数。如何在此列表中找到键值对? 最佳答案 你会这样写: var result = d.Where(kvp => kvp.Value == "s
我有一个具有 KeyValuePair 类型属性的对象。 我想从数据库中读取一些数据并将结果存储在这个 KeyValuePair 类型字段中。 myObject.KeyValuePairs = ctx
我有一个 IEnumerable对于具有 string 的实体和一个 int成员。 我需要将其转换为 KeyValuePair 的数组反之亦然。 它因转换错误而失败。 [DataContract] p
我有一个 IEnumerable> keyValueList 类型的对象, 我正在使用 var getResult= keyValueList.SingleOrDefault(); if(getR
我正在 build 一个 Dictionary带 key 型KeyValuePair .使用时KeyValuePair.Create内Dictionary初始化程序它不需要模板类型并且它正确地推断了类
我有一个列表 KeyValuePair在 C# 中格式为 KeyValuePair .我想从列表中删除具有重复值的项目。 具有 {X,Y} 的 Point 对象坐标。 示例数据: List> Data
我有这个代码: List>> aux = retEmpty.ToList(); aux.ForEach(x => ret.Add(x.Key, x.Value)); 我需要按第一个元素(“string
我有一个方法需要以下内容: public static List ParetoBuildBySum(List> inputData) 我有以下 linq 查询,并希望传入 KeyValueP
我是一名优秀的程序员,十分优秀!