MVC3 アプリケーションを 1 つ作成しました。マップする必要があり、一時的に保存する必要があり、最後に表示する必要がある2つの異なるテーブルから2つの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
今、私はそれらを一緒にマップするためにそれぞれから1対1のIDを選択するようにどのように示すことができますか?
マップされたデータセットまたは任意の temptable には 2 つの列があります
PriceID QueryID
P111 Q565UUU
私は MVC3 の初心者ですが、単一の列を表示するにはどうすればよいですか?
各テーブルから SecurityID と CUSIP を簡単に選択して相互にマップできるように、UI を作成する必要があります。
何を使えばいいですか?