ExcludeOtherContentTypes (SPMetal)

Applies to: SharePoint Foundation 2010

Specifies that classes are generated only for content types that are explicitly represented by ContentType elements.

Web (SPMetal)
  ExcludeOtherContentTypes (SPMetal)

<ExcludeOtherContentTypes />

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None.

Child Elements

None.

Parent Elements

Element

Description

Web (SPMetal)

Specifies the name and access level (public or internal) of the class (derived from DataContext) that SPMetal generates.

Remarks

A Web element cannot have both an ExcludeOtherContentTypes element and an IncludeHiddenContentTypes element.

Example

The following is an example of a ExcludeOtherContentTypes element in use. In this example, it ensures that a class is generated for only the Contact content type.

<?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"/>
  </ContentType>
  <ExcludeOtherContentTypes />
  <List Name="Team Members">
    <ContentType Name="Item" Class="TeamMember" />
  </List>
</Web>

See Also

Concepts

SPMetal Default Code Generation Rules

Overriding SPMetal Defaults by Using a Parameters XML File