对象数据源从两个表中获取值?

发布于 2024-11-07 20:42:38 字数 433 浏览 1 评论 0原文

我有一个与 objectdatasource 绑定的列表视图。我从 URL 获取参数。

在数据库中。我有两张桌子。 第一个表包含每行的 unquie。 ex

pkey  Name   Text

1 A xyz

2 B zzz

但在第二个表中将具有与第一个表相同的外键,因此该值将为

pkey   FKey   value

1 1 /image/1.jpg

2 1 /image/2.jpg

3 2 /image/z.jpg

4 2 / image/a.jpg

现在对于这个灵魂我应该有两个列表视图吗? 第一个列表视图用于第一个表,第二个列表视图用于第二个表???

请指导我???

I have a listview bind with objectdatasource. i am getting the parameter from URL.

in database. i have two table.
1st table contains unquie for per row. ex

pkey  Name   Text

1 A xyz

2 B zzz

but in 2nd table will be having foreing key with table 1st so the value will

pkey   FKey   value

1 1 /image/1.jpg

2 1 /image/2.jpg

3 2 /image/z.jpg

4 2 /image/a.jpg

Now for this soultion should i have two listview??
1st listview for 1st table and 2nd for 2nd table???

Please guide me???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故人如初 2024-11-14 20:42:40

使用 linq 对象,您可以对表执行联接,从而在单个对象中提供您要查找的所有数据。然后可以将其放入一个列表视图中。

var dat = from x in Context.Table_1
              join y in Context.Table_2 on x.pkey equals y.fkey
              select new 
              {
                   Name = x.Name, 
                   Text = x.Text,
                   Value = y.value
              };

using linq objects you can perform a join on the tables giving you all the data you are looking for in a single object. And can then put it into one list view.

var dat = from x in Context.Table_1
              join y in Context.Table_2 on x.pkey equals y.fkey
              select new 
              {
                   Name = x.Name, 
                   Text = x.Text,
                   Value = y.value
              };
您的好友蓝忘机已上羡 2024-11-14 20:42:39

如果您只是使用使用普通旧式 ADO.NET 调用数据库的类,则可以直接在 SQL 语句中进行联接,也可以在数据库中创建一个基于主键/外键值联接表的视图并返回单个结果集,然后查询视图。如果您使用 ORM,则可以使用 Linq(假设 ORM 有 Linq 提供程序)来执行联接或映射视图并单独查询。

If you are just using classes that call the database using plain old ADO.NET, you can either make the joins directly in the SQL statement or you can create a view in the database that joins the tables based on the primary key/foreign key values and returns a single result-set, then query the view. If you're using an ORM you can use Linq (assuming the ORM has a Linq provider) to perform the join or map the view and query it separately.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文