相关疑难解决方法(0)

NHibernate QueryOver将属性合并到另一个属性

考虑这个愚蠢的域名:

namespace TryHibernate.Example
{
    public class Employee
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }

    public class WorkItem
    {
        public int Id { get; set; }
        public string Description { get; set; }
        public DateTime StartDate { get; set; }
        public DateTime EndDate { get; set; }
    }

    public class Task
    {
        public int Id { get; set; }
        public Employee Assignee { get; set; }
        public WorkItem WorkItem { get; set; …
Run Code Online (Sandbox Code Playgroud)

c# nhibernate properties coalesce fluent-nhibernate

6
推荐指数
1
解决办法
1458
查看次数

标签 统计

c# ×1

coalesce ×1

fluent-nhibernate ×1

nhibernate ×1

properties ×1