Fluent NHibernate “Could not resolve property”
I have read a lot of the questions about that same error but none since to match my exact problem. I'm trying to access the property of an object, itself part of a root object, using Fluent NHibernate. Some answers say I need to use projections, others that I need to use join, and I think it should work through lazy loading. Here are my two classes along with the Fluent mappings: Artist class public class Artist { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual IList<Album> Albums { get; set; } public virtual string MusicBrainzId { get; set; } public