我有超过
我的目标是建立像这样的强类型模型
public class Product
{
//all properties here
public IList<ProductVariant> ProductVariants { get; set; }
}
public class ProductVariant
{
//all properties here
public IList<ProductVariantPrice> ProductVariantPrices { get; set; }
}
public class ProductVariantPrice
{
//all properties here
}
获得
IList<Product> Products
我读了很多有关使用一个较大的查询或许多最小的查询的信息,答案是针对最小的查询的。
就我而言,我必须运行
查询总数为70万。 是否可以接受70万个查询来获得我的复杂模型?还是存在服务器故障的风险?
最佳做法是什么?
谢谢