0

我创建了一个 MVC3 应用程序。我从两个不同的表中选择两个 Id,我需要映射它们并需要临时保存在某个地方并希望在最后显示。

I have taken two dropdownlist each one populated from one-one table. then i need to select one id from one and other from 2nd table when i clicked on map button it should have to create one temp table will show me two (values)columns what i have mapped just. how can i create temp table? using EF.

table1

SELECT PriceID FROM Pricing

PriceID
P111
P222
P333

table2

SELECT QueryID FROM QueryTable

QueryID
Q565UUU
Q661YAA
Q421933

现在我不知道如何向他们展示从每个 ID 中选择一个 ID 以将它们映射在一起有任何帮助吗?

映射数据集或任何临时表将有两列

 PriceID  QueryID
  P111    Q565UUU

我是 MVC3 的新手,我应该用什么来显示单列?

请帮助需要创建 UI,以便可以轻松地从每个表中选择 SecurityID 和 CUSIP 并相互映射。

我应该用什么?

4

1 回答 1

2

创建一个新模型并用您的数据填充它,然后在您的视图中使用该模型:

namespace yourProject.ViewModels 
{ 
    public class PriceQueryGroup 
    { 
        public string PriceID { get; set; }      
        public string QueryID { get; set; } 
    } 
}

在你看来:

@model IEnumerable<yourProject.ViewModels.PriceQueryGroup>

我希望我已经正确理解了您的问题,并且这会有所帮助。

于 2012-04-11T14:55:21.293 回答