使用 SharePoint 进行 CAML 联接
假设有 Emp 和 Dept 表。
Emp 表有
EmpID
FirstName
LastName
DeptName
Email
Dept 表,
DeptID
DeptName
我必须使用 CAML 查询基于 DeptName 显示所有员工详细信息。 有人可以分享一下这种情况下的 CAML JOINS 示例吗?
谢谢
Assume that there are Emp and Dept tables.
Emp Table has
EmpID
FirstName
LastName
DeptName
Email
Dept table has
DeptID
DeptName
i have to display all the employee details based on DeptName using CAML query.
Can some one share CAML JOINS example for this scenario.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查这种方法很容易加入任意数量的列表:链接
Check this approach very easy to join as many list as you want: Link
1) 您使用的是 SP 2007 还是 SP 2010
2)简单的方法是在 SP 设计器中创建一个查询字符串,然后根据 URL 中的查询字符串显示员工详细信息
如果不能解决你的问题,那么 yiu 必须接受 Kyle 的建议并从代码中完成,LINQ 可能是一个好方法
1) Are you on SP 2007 or SP 2010
2)On easy approach is create a querystring in SP designer and then show the employee details based on the query string from the URL
If doesn't solve your proble then yiu have to take Kyle advice and do it from code and LINQ could be a good way to go