在 C# 中使用 OData 進行數據查詢,你可以使用 Microsoft.OData.Client 庫。以下是一個簡單的示例,演示如何使用這個庫來查詢 OData 服務:
Install-Package Microsoft.OData.Client
Products
的實體,模型類可以定義如下:public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
ODataClient
類連接到 OData 服務并查詢數據:using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.OData.Client;
class Program
{
static void Main(string[] args)
{
// 創建 OData 客戶端
Uri serviceUri = new Uri("https://api.example.com/odata");
ODataClient client = new ODataClient(serviceUri);
// 獲取 `Products` 實體集
IQueryable<Product> productsQuery = client.Products;
// 執行查詢并獲取結果
try
{
List<Product> products = productsQuery.ToList();
Console.WriteLine("查詢到的產品:");
foreach (var product in products)
{
Console.WriteLine($"ID: {product.Id}, 名稱: {product.Name}, 價格: {product.Price}");
}
}
catch (Exception ex)
{
Console.WriteLine("查詢過程中發生錯誤:");
Console.WriteLine(ex.Message);
}
}
}
在這個示例中,我們首先創建了一個 ODataClient
實例來連接到 OData 服務。然后,我們使用 IQueryable<Product>
類型的 productsQuery
變量來表示 Products
實體集。接著,我們調用 ToList()
方法執行查詢并將結果存儲在 products
列表中。最后,我們遍歷列表并輸出查詢到的產品信息。
注意:這個示例假設 OData 服務使用的是默認的命名空間。如果你的 OData 服務使用了不同的命名空間,你需要在創建 ODataClient
實例時指定正確的命名空間。例如:
ODataClient client = new ODataClient(serviceUri, "http://example.com/odata/$metadata");