using DeveloperAchievements.Achievements; namespace DeveloperAchievements.DataAccess.NHibernate.Mappings { public class AchievementMapping : KeyedEntityMapping { public AchievementMapping() { References(x => x.Developer, "DeveloperID"); References(x => x.AwardedAchievement, "AchievementTypeID"); } } }