ExcludeContentType (SPMetal)
Applies to: SharePoint Foundation 2010
Specifies that no class is generated for a content type.
Web (SPMetal)
ExcludeContentType (SPMetal)
<ExcludeContentType Name="Announcements" />
Complex
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute |
Description |
---|---|
Name |
The content type that is excluded from code generation. |
Child Elements
None.
Parent Elements
Element |
Description |
---|---|
Specifies the name and access level (public or internal) of the class (derived from DataContext) that SPMetal generates. |
|
Includes a list in code generation and modifies how code is generated for list-scoped content types. |
Remarks
A Web element cannot have both a ContentType element and an ExcludeContentType element that name the same content type. An ExcludeContentType element that names a hidden content type may not be present in the same Web element that has an IncludeHiddenContentTypes element. Finally, a Web element cannot have both an ExcludeOtherContentTypes element and an IncludeHiddenContentTypes element.
Example
The following is an example of a ExcludeContentType element in use.
<?xml version="1.0" encoding="utf-8"?>
<Web AccessModifier="Internal" xmlns="https://schemas.microsoft.com/SharePoint/2009/spmetal">
<ContentType Name="Contact" Class="Contact">
<Column Name="ContId" Member="ContactId" />
<Column Name="ContactName" Member="ContactName1" />
<Column Name="Category" Member="Cat" Type="String"/>
<ExcludeColumn Name="HomeTelephone" />
</ContentType>
<ExcludeContentType Name="Order"/>
<List Name="Team Members" Type="TeamMember">
<ContentType Name="Item" Class=ā€¯TeamMember" />
</List>
</Web>