对象数据源从两个表中获取值?
我有一个与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 linq 对象,您可以对表执行联接,从而在单个对象中提供您要查找的所有数据。然后可以将其放入一个列表视图中。
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.
如果您只是使用使用普通旧式 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.