OData 接続情報を取得する方法
Contents
[
Hide
]
OData 接続情報を取得する
開発者が Excel ファイルから OData 情報を抽出する必要がある場合があります。 Aspose.Cells はWorkbook.DataMashupExcel ファイルに存在する DataMashup 情報を返すプロパティ。この情報は、データマッシュアップクラス。のデータマッシュアップクラスが提供するPowerQuery式を返すプロパティPowerQuery式コレクションコレクション。からPowerQuery式コレクションにアクセスできますPowerQuery式とPowerQueryFormulaItem.
次のコード スニペットは、これらのクラスを使用して OData 情報を取得する方法を示しています。
次のコード スニペットで使用されているソース ファイルは、参照用に添付されています。
サンプルコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// source directory | |
string SourceDir = RunExamples.Get_SourceDirectory(); | |
Workbook workbook = new Workbook(SourceDir + "ODataSample.xlsx"); | |
PowerQueryFormulaCollection PQFcoll = workbook.DataMashup.PowerQueryFormulas; | |
foreach (PowerQueryFormula PQF in PQFcoll) | |
{ | |
Console.WriteLine("Connection Name: " + PQF.Name); | |
PowerQueryFormulaItemCollection PQFIcoll = PQF.PowerQueryFormulaItems; | |
foreach (PowerQueryFormulaItem PQFI in PQFIcoll) | |
{ | |
Console.WriteLine("Name: " + PQFI.Name); | |
Console.WriteLine("Value: " + PQFI.Value); | |
} | |
} |
コンソール出力
接続名: 注文
名前: ソース
値: OData.Feed(“https://services.odata.org/V3/Northwind/Northwind.svc/", null, [Implementation=“2.0”])
名前: Orders_table
値: ソース{[名前=“注文”,署名=“テーブル”]}[データ]