ExcludeOtherLists (SPMetal)
上次修改时间: 2015年3月9日
适用范围: SharePoint Foundation 2010
指定 SPMetal 仅为由 List 元素明确表示的列表生成代码。
Web (SPMetal)
ExcludeOtherLists (SPMetal)
<ExcludeOtherLists />
属性和元素
下面各部分描述了属性、子元素和父元素。
属性
无。
子元素
无。
父元素
元素 |
说明 |
---|---|
指定 SPMetal 生成的类(从 DataContext 派生)的名称和访问级别(公共的或内部的)。 |
备注
Web 元素不能同时包含 ExcludeOtherLists 元素和 IncludeHiddenLists 元素。
示例
以下是 ExcludeOtherLists 元素的使用示例。在此示例中,它确保"Team Members"列表是唯一的 SPMetal 为其生成属性声明的列表。
<?xml version="1.0" encoding="utf-8"?>
<Web AccessModifier="Internal" xmlns="https://schemas.microsoft.com/SharePoint/2009/spmetal">
<List Name="Team Members">
<ContentType Name="Item" Class="TeamMember" />
</List>
<ExcludeOtherLists />
</Web>