gpt4 book ai didi

c# - 无法将类型 'ListName[]' 隐式转换为 'System.Collections.Generic.IList'

转载 作者:行者123 更新时间:2023-11-30 13:37:58 25 4
gpt4 key购买 nike

我有一个具有特定属性的 IList。我从数据库访问一组值到返回 IList 的代码。我使用了一个网络服务,它在列表中提供了完整的细节。作为 WCF 的服务在 WCFTestClient.exe 中得到很好的执行。但是在代码隐藏中,它在放置时显示错误。

public IList<BrandInfo> SearchProduct(string name)
{
AuthenicationServiceClient obj = new AuthenicationServiceClient();
return obj.SearchProducts(name);

}

它显示错误“Cannot implicitly convert type 'Model.BrandInfo[]' to 'System.Collections.Generic.IList<Models.BrandInfo>'

网络服务中的代码。

public IList<BrandInfo> GetBrandByQuery(string query)
{
List<BrandInfo> brands = Select.AllColumnsFrom<Brand>()
.InnerJoin(Product.BrandIdColumn, Brand.BrandIdColumn)
.InnerJoin(Category.CategoryIdColumn, Product.CategoryIdColumn)
.InnerJoin(ProductPrice.ProductIdColumn, Product.ProductIdColumn)
.Where(Product.EnabledColumn).IsEqualTo(true)
.And(ProductPrice.PriceColumn).IsGreaterThan(0)
.AndExpression(Product.Columns.Name).Like("%" + query + "%")
.Or(Product.DescriptionColumn).Like("%" + query + "%")
.Or(Category.CategoryNameColumn).Like("%" + query + "%")
.OrderAsc(Brand.NameColumn.ColumnName)
.Distinct()
.ExecuteTypedList<BrandInfo>();

// Feed other info here
// ====================
brands.ForEach(delegate(BrandInfo brand)
{
brand.Delivery = GetDelivery(brand.DeliveryId);
});

return brands;
}

我如何从客户端访问此代码。我无法为此提取任何相关的在线引用。

最佳答案

我从您的错误消息中注意到的一件事是它清楚地指出:

Cannot implicitly convert type 'Model.BrandInfo[]' to 'System.Collections.Generic.IList<Models.BrandInfo>'

Model.BrandInfo不同于Models.BrandInfo在单独的项目中定义。编译器不会以这种方式得出等价性。您必须在一个项目中声明它并在另一个项目中引用它,或者您必须自己编写一个映射器。

有点像

public IList<BrandInfo> SearchProduct(string name)
{
AuthenicationServiceClient obj = new AuthenicationServiceClient();
return obj.SearchProducts(name).Select(Convert).ToList();
}

public Models.BrandInfo Convert(Model.BrandInfo x)
{
//your clone work here.
}

或者您应该尝试一些自动映射的库,例如 AutoMapperValueInjecter

关于c# - 无法将类型 'ListName[]' 隐式转换为 'System.Collections.Generic.IList<ListName>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19762573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com