SharepointMyList
の ContentType に基づくリストがあります。MyContentType
今、SPMetal で LINQ クラスを生成しようとしていますが、ContentType のクラスは基本的に 2 回作成されます。
SPMetal の XML 構成
<?xml version="1.0" encoding="utf-8"?>
<Web AccessModifier="Internal" xmlns="http://schemas.microsoft.com/SharePoint/2009/spmetal">
<List Name="MyList">
<ContentType Name="MyContentType"></ContentType>
</List>
<ExcludeOtherLists/>
<ExcludeOtherContentTypes/>
</Web>
出力 cs ファイルの一部
[Microsoft.SharePoint.Linq.ListAttribute(Name="MyList")]
public Microsoft.SharePoint.Linq.EntityList<MyContentTypeMyContentType> MyList {
get {
return this.GetList<MyContentTypeMyContentType>("MyList");
}
}
[...]
[Microsoft.SharePoint.Linq.ContentTypeAttribute(Name="MyContentType", Id="0x01003D132021D84A48E9A16011B7648CBD98")]
[Microsoft.SharePoint.Linq.DerivedEntityClassAttribute(Type=typeof(MyContentTypeMyContentType))]
internal partial class MyContentType : Element {
[...]
}
[...]
[Microsoft.SharePoint.Linq.ContentTypeAttribute(Name="MyContentType", Id="0x01003D132021D84A48E9A16011B7648CBD98", List="MyList")]
internal partial class MyContentTypeMyContentType : MyContentType {
public MyContentTypeMyContentType() {
this.OnCreated();
}
}
ご覧のとおり、MyContentTypeMyContentType
から派生したクラスが生成されMyContentType
ます。しかし、なぜ?無駄だ。どうすればこの動作を回避できますか?
代わりにMyList
の EntityList であれば正しいでしょう。MyContentType
MyContentTypeMyContentType
PS
次のように ContentType の XML 構成にクラス名を追加すると:
<ContentType Name="MyContentType" class="MyContentType"></ContentType>
それでも2番目のクラスを生成し、それに名前を付けますが、MyContentType0
これも間違っています。