You can use DataServiceContext+ DataServiceQueryin System.Data.Services.Clientto get to Url. Remember that the request is not executed until First () is called due to lazy loading.
var context = new DataServiceContext(new Uri("http://odata.org/Product-Service"), DataServiceProtocolVersion.V3);
var query = context.CreateQuery<Product>("Product");
Product product = query.Where(p => p.Id == 150).First();
http://odata.org/Product-Service/Product (150), , query.Entities. Uri.
, Product , :
var query = context.CreateQuery<Product>("Product").
AddQueryOption("$expand", "NavigationProperty");