DataSource for Entity Framework for WinForms
IndexedAttribute(XElement,XName,IndexingHintAction) メソッド
使用例 

C1.LiveLinq.4.5.2 アセンブリ > C1.LiveLinq.LiveViews.Xml 名前空間 > XmlExtensions クラス > IndexedAttribute メソッド : IndexedAttribute(XElement,XName,IndexingHintAction) メソッド
属性を含む要素。
取得する属性の名前。
ヒントによって指定されるアクション。
指定された XML 属性のインデックスを作成して使用するヒント。ヒントには、指定されたアクションがあります。
シンタックス
'宣言
 
Public Overloads Shared Function IndexedAttribute( _
   ByVal element As System.Xml.Linq.XElement, _
   ByVal name As System.Xml.Linq.XName, _
   ByVal action As IndexingHintAction _
) As XHint
public static XHint IndexedAttribute( 
   System.Xml.Linq.XElement element,
   System.Xml.Linq.XName name,
   IndexingHintAction action
)

パラメータ

element
属性を含む要素。
name
取得する属性の名前。
action
ヒントによって指定されるアクション。

戻り値の型

指定された名前を持つ属性。
解説
ヒントは宣言的に使用されます。可能な場合、この属性のインデックスを作成して使用するように LiveLinq クエリーオプティマイザに指示します。 クエリーが実行されると、ヒントメソッド IndexedAttribute は標準の LINQ to XML メソッド System.Xml.Linq.XElement.Attribute(System.Xml.Linq.XName) に置き換えられます。詳細については、C1.LiveLinq.Hints を参照してください。
使用例
var query =
from c in customers
where (string)c.IndexedAttribute("CustomerID", IndexingHintAction.Mandatory) == "ALFKI"
select c;
参照

XmlExtensions クラス
XmlExtensions メンバ
オーバーロード一覧