Is it possible to use NHibernate without altering a DDD model that is part of a framework

后端 未结 4 566
耶瑟儿~
耶瑟儿~ 2021-02-01 22:32

I dig a lot of things about the DDD approach (Ubiquitous language, Aggregates, Repositories, etc.) and I think that, contrary to what I read a lot, entities sho

相关标签:
4条回答
  • 2021-02-01 23:16

    The short answer to your question is that it is not possible, but if don't need lazy loading the required alterations are trivial.

    No matter what, you will have add default constructors to classes that do not already have them. If you are willing to forgo lazy-loading, those default constructors can be private, and you don't have to make any other changes to your domain model to use NHibernate.

    That's awfully close to persistence ignorance.

    Having said that, if you want lazy-loading, you'll need to make several changes (outlined in other answers to this question) so that NHibernate can create proxies of your aggregated entities. I'm personally still trying to decide whether lazy-loading is an enabling technology for DDD or if it's a premature optimization that requires too many intrusive changes to my POCOs. I'm leaning toward the former, though I really wish NHibernate could be configured to use a specific constructors.

    You might also take a look at Davy Brion's blog (I particularly liked Implementing A Value Object With NHibernate), which is really illuminating if you're interested in domain-driven-design and avoiding anemic domain models.

    0 讨论(0)
  • 2021-02-01 23:22
    • For NHibernate:
      • All mapped classes require a default (no-arguments) constructor. The default constructor does not have to be public (it can be private so that it is not a part of the API), but it must exist. This is because NHibernate must be able to create an instance of the mapped class without passing any arguments. (There are workarounds, but don't do that.)
      • All mapped properties for which lazy-loading will be required must be marked virtual. This includes all reference properties and all collection properties. This is because NHibernate must be able to generate a proxy class deriving the mapped class and overriding the mapped property.
      • All mapped collection properties should use an interface as the property type. For example, use IList<T> rather than List<T>. This is because the collections types in the .NET Framework tend to be sealed, and NHibernate must be able to replace a default instance of the collection type with its own instance of the collection type, and NHibernate has its own internal implementations of the collection types.
      • For NHibernate, prefer Iesi.Collections.Generic.ISet<T> to System.Collections.Generic.IList<T>, unless you are sure that what you want is actually a list rather than a set. This requires being conversant in the theoretical definitions of list and set and in what your domain model requires. Use a list when you know that the elements must be in some specific order.

    Also note that it's typically not easy to swap object-relational mapping frameworks, and in many cases it is impossible, when you have anything beyond a trivial domain model.

    0 讨论(0)
  • 2021-02-01 23:22

    In my experience, the only thing that NHibernate requires of a domain is virtual properties and methods and a default no-argument constructor, which as Jeff mentioned, can be marked private or protected if need be. That's it. NHibernate is my OR/M of choice, and I find the entire NHibernate stack (NHibernate, NHibernate Validator, Fluent NHibernate, LINQ to NHibernate) to be the most compelling framework for persisting POCO domains.

    A few things you can do with NHibernate:

    • Decorate your domain model with NHV attributes. These constaints allow you to do three things: validate your objects, ensure that invalid entities are not persisted via NHibernate, and help autogenerate your schema when using using NHibernate's SchemaExport or SchemaUpdate tools.
    • Map your domain model to your persistent storage using Fluent NHibernate. The main advantage, for me, in using FNH is the ability to auto map your entities based on conventions that you set. Additonally, you can override these automappings where necessary, manually write class maps to take full control of the mappings, and use the xml hbm files if you need to.
    • Once you buy into using NH, you can easily use the SchemaExport or SchemaUpdate tools to create and execute DDL against your database, allowing you to automatically migrate domain changes to your database when initilizing the NH session factory. This allows you to forget about the database, for all intents and purposes, and concentrate instead on your domain. Note, this may not be useful or ideal in many circumstances, but for quick, local development of domain-centric apps, I find it convenient.
    • Additionally, I like using generic repositories to handle CRUD scenarios. For example, I usually have an IRepository that defines methods for getting all entites as an IQueryable, a single entity by id, for saving an entity, and for deleting an entity. For anything else, NH offers a rich set of querying mechanisms -- you can use LINQ to NHibernate, HQL, Criteria queries, and straight SQL if need be.

    Th only compromise you have to make is using NHV attributes in your domain. This is not a deal breaker for me, since NHV is a stand-alone framework which adds additional capabilities if you choose to use NHibernate.

    I have built a few apps using NH, and each has a persistence ignorant domain with all persistence concerns separated into its own assembly. That means one assembly for your domain, and another for your fluent mappings, session management, and validation integration. It's very nice and clean and does the job well.

    By the way: your English is pretty darn good, I wish my French was up to par ;-).

    0 讨论(0)
  • 2021-02-01 23:32

    Just to put my two bits in, I struggled with the same thing once but I overcame this by:

    1. Adding protected default constructor to every entity.
    2. Making Id virtual

    Let's take for example upvote and downvote for Vote entity on my experiment website: http://chucknorrisfacts.co.uk/ (NHibernate + MySQL with Mono)

    public class Vote : Entity
    {
        private User _user;
        private Fact _fact;
        // true: upvote, false: downvote
        private bool _isupvoted;
    
        // for nHibernate
        protected Vote() { }
    
        public Vote(User user, Fact fact, bool is_upvoted)
        {
            Validator.NotNull(user, "user is required.");
            Validator.NotNull(fact, "fact is required.");
    
            _fact= fact;
            _user = user;
            _isupvoted = is_upvoted;
        }
    
        public User User
        {
            get { return _user; }
        }
        public Fact Fact
        {
            get { return _fact; }
        }       
        public bool Isupvoted
        {
            get { return _isupvoted; }
        }
    }
    

    This class inherits from Entity where we stick all the minimum necessary for Nhibernate.

    public abstract class Entity
    {
       protected int _id;
       public virtual int Id { get {return _id;} }
    }
    

    and Fluent mapping where you Reveal the private property.

    public class VoteMap : ClassMap<Vote>
    {
        public VoteMap()
        {
           DynamicUpdate();
    
           Table("vote");           
           Id(x => x.Id).Column("id");
    
           Map(Reveal.Member<Vote>("_isupvoted")).Column("vote_up_down");
           References(x => x.Fact).Column("fact_id").Not.Nullable();
           References(x => x.User).Column("user_id").Not.Nullable();
        }
    }
    

    You could probably place protected default constructor in Entity class and configure nHibernate to use it instead but I didn't look into it yet.

    0 讨论(0)
提交回复
热议问题