foreach 循环容器内的 foreach 项目类型枚举器引用的集合中的项目有哪些
当我最近浏览有关 SSIS - Foreach Item Enumerator 的 Microsoft 文档时,以下几点引起了我的注意:
Foreach Item 枚举器用于枚举属于集合的项目。例如,您可以枚举执行进程任务使用的可执行文件和工作目录的名称。
您可以使用 Foreach Item 枚举器来枚举集合中的项目。
从以上两个突出的陈述来看,哪些物品可以被视为收藏品?是否有任何记录来源可以理解“集合”和“其项目”的概念?
有人能帮我理解这个场景吗?感谢您抽出宝贵的时间。这个 上面突出显示的文本行中的链接是否被采用
When I recently went through Microsoft documentation about SSIS -- Foreach Item Enumerator, the following points took my attention:
Foreach Item enumerator to enumerate items that are collections. For example, you can enumerate the names of executables and working directories that an Execute Process task uses.
You use the Foreach Item enumerator to enumerate items in a collection.
From the above two highlighted statements, what are such items that are considered to be collections? Is there any documented source to understand the concept of 'collection' and 'its items'?
would anyone help me understand the scenario? Thank you for giving your valuable time. This is the link from the above-highlighted lines of text is taken
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该集合是 ForEach 循环容器编辑器中的预定义表(列和行)。例如,您需要枚举三个目录中的文件,您可以添加一个带有项目枚举器的 ForEach 循环容器来循环目录名称,并使用另一个 ForEach 循环容器枚举每个目录的文件。
您可以在以下文章中阅读更多详细信息:
The collection is a predefined table (columns and rows) in the ForEach loop container editor. For example, you need to enumerate files within three directories, you can add a ForEach loop container with an item enumerator to loop over the directory names and use another ForEach loop container to enumerate the files of each directory.
You can read more details in the following article: