- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
您好,我有一个数组,可以获取制造商和国家/地区,由于某些原因,当数组返回时,数组的顺序有时会发生变化。
这是 Linq 查询:
var array = (from xx in _er.UserRoles
join xy in _er.Countries on xx.CountryId equals xy.Id
join xz in _er.Manufacturers on xx.ManufacturerId equals xz.Id
where xx.UserId == userId
select new List<string> { xz.Description, xy.Name }).ToArray();
地点:xz.Description 是制造商xy.Name 是国家
在我的数组中,我希望得到以下内容:
[0] Count = 2
[0] Dove
[1] Uk
[1] Count = 2
[0] Dove
[1] France
[2] Count = 2
[0] Sure
[1] UK
...
但在某些情况下,我会得到以下信息:
[0] Count = 2
[0] Dove
[1] Uk
[1] Count = 2
[0] France
[1] Dove
[2] Count = 2
[0] UK
[1] Sure
...
当我在数据库中运行查询以检查每个制造商都有一个国家时,我最初认为可能是那个国家。
谁能就为什么会发生这种情况提出建议?
编辑
这是 sql 查询和一些示例数据:
select m.Description, c.Name from UserRoles ur
join Countries c on ur.CountryId = c.Id
join Manufacturers m on ur.ManufacturerId = m.Id
where ur.userid = 435
示例数据:
Description Name
Lynx United Kingdom
Persil United Kingdom
Dove Brazil
Dove Canada
Dove Germany
Dove France
Dove United Kingdom
Dove Netherlands
Dove United States
Surf United Kingdom
Comfort United Kingdom
Sure United Kingdom
Bertolli United Kingdom
Bertolli United States
编辑2
下面是对我正在做的事情的更多解释,这样可以更多地解释我最终需要什么:
在我的 Controller 中,我将数组放入 session 中:
Controller 代码:
var userManuCountry = _userRoleRepository.GetCountryAndManufacturerForUser(u.Id);
Session["userManuCountry"] = userManuCountry;
存储库代码:
/// <summary>
///
/// </summary>
/// <param name="userId"></param>
/// <returns></returns>
public string[,] GetCountryAndManufacturerForUser(int userId)
{
var array = (from xx in _er.UserRoles
join xy in _er.Countries on xx.CountryId equals xy.Id
join xz in _er.Manufacturers on xx.ManufacturerId equals xz.Id
where xx.UserId == userId
select new List<string> { xz.Description, xy.Name }).ToArray();
return CreateRectangularArray(array);
}
static T[,] CreateRectangularArray<T>(IList<T>[] arrays)
{
// TODO: Validation and special-casing for arrays.Count == 0
int minorLength = arrays[0].Count();
T[,] ret = new T[arrays.Length, minorLength];
for (int i = 0; i < arrays.Length; i++)
{
var array = arrays[i];
if (array.Count != minorLength)
{
throw new ArgumentException
("All arrays must be the same length");
}
for (int j = 0; j < minorLength; j++)
{
ret[i, j] = array[j];
}
}
return ret;
}
另一个 Controller - 我正在使用 session 列出制造商的国家/地区:
/// <summary>
/// et the specific countries for user and manufacturer
/// </summary>
/// <returns></returns>
[AcceptVerbs(HttpVerbs.Get)]
// [ValidateAntiForgeryToken]
// [Authorize(Roles = "ReportingDashboardAccess")]
public ActionResult GetListOfCountriesForUserManufacturer(int userId, string manu)
{
manu = manu.Trim();
// get the specific countries for user and manufacturer
var countries = new List<string>();
//here we want to use the manu to get the countries from seesion rather than db - this is a multidimensional array
string[,] manuCountry = (string[,])Session["userManuCountry"];
var addCountry = false;
//loop through to find countries for each manufacturer
for (int row = 0; row < manuCountry.GetLength(0); row++)
{
for (int col = 0; col < manuCountry.GetLength(1); col++)
{
string result = manuCountry[row, col];
result.Trim();
if (addCountry == true && col == 1)
{
//addcountry has been set to true so add it
countries.Add(result);
addCountry = false;
}
else if (addCountry == true && col == 0)
{
addCountry = false;
}
if (result == manu)
{
//the next one that comes through is the country
addCountry = true;
}
}
}
countries.Sort();
ViewData["allCountries"] = new SelectList(countries);
return View("CountriesParam");
}
非常感谢!
最佳答案
集合初始化器 ( new List<string> { xz.Description, xy.Name }
) 应该保留表达式中指定的项目顺序,因此您的代码应该可以工作。
我猜想有一些东西在创建的列表上运行并以某种方式混淆了排序。
也就是说,对具有不同含义的值使用列表(或任何集合)是不直观的。即使它们都是字符串,这些值也不具有相同的上下文。给他们明确不同的容器会好得多。例如现在,如果您用数据填充几个文本框,您将使用:
txtName.Text = list[0];
txtCountry.Text = list[1];
而且错误很难被发现和诊断。如果您使用
将结果放在单独的实体(例如匿名类)中select new { Name = xz.Description, Country = xy.Name }
你可以用
txtName.Text = myObject.Name;
txtCountry.Text = myObject.Country
关于 edit2:如果我正确理解您的情况,您需要的是获取制造商允许的国家/地区列表。 Dictionary<string, IEnumerable<string>>
是此类数据的理想容器。 , 而不是 string[,]
.
我会像这样重构 LINQ:
//gets the data from the database
var data = (from xx in _er.UserRoles
join xy in _er.Countries on xx.CountryId equals xy.Id
join xz in _er.Manufacturers on xx.ManufacturerId equals xz.Id
where xx.UserId == userId
select new { Name = xz.Description, Country = xy.Name });
//formats the data into a dictionary
var result = data.GroupBy(a => a.Name)
.ToDictionary(// the name of the product
g => g.Key,
// the list of countries for the product
g => g.Select(a => a.Country).ToList());
return result;
然后像这样使用它(在 GetListOfCountriesForUserManufacturer
中):
public ActionResult GetListOfCountriesForUserManufacturer(int userId, string manu)
{
manu = manu.Trim();
//I'm not too crazy about sesiion usage, but that's a whole other issue
var manuCountry = (Dictionary<string, List<string>>)Session["userManuCountry"];
// get the specific countries for user and manufacturer
var countries = manuCountry[manu];
countries.Sort();
ViewData["allCountries"] = new SelectList(countries);
return View("CountriesParam");
}
关于c# - Linq 数组列表顺序更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18999024/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!