小编Bar*_*rry的帖子

如何使用/映射数据库视图来填充包含的集合?

我有这些课程:

public class FloorFill
{
    protected FloorFill(){}
    public virtual ProductCatalog Catalog { get; set; }
    public virtual Inventory BatchedItem { get; set; }
    public virtual Transaction Batch { get; set; }
    public virtual int ItemReference { get; set; }
    public virtual IList<InventoryLocation> BackstockLocations { get; set; }
}
public class InventoryLocation
{
    public InventoryLocation(){}
    public virtual int Id { get; set; }
    public virtual int ItemReference { get; private set; }
    public virtual Location Where { get; set; }
    public …
Run Code Online (Sandbox Code Playgroud)

c# nhibernate-mapping fluent-nhibernate

5
推荐指数
1
解决办法
5782
查看次数

标签 统计

c# ×1

fluent-nhibernate ×1

nhibernate-mapping ×1