Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 216203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:32:33+00:00 2026-05-11T18:32:33+00:00

This one has me scratching my head, so I’m hoping a second pair of

  • 0

This one has me scratching my head, so I’m hoping a second pair of eyes can help me out here.

Setup:

I’ve got a base class called DomainEntity that all of my data transfer objects use. It basically only defines a property called Id (which is an integer).

I’ve got data transfer objects: Blog, Post, User
DomainEntity is in the namespace Core.Domain, the data transfer objects are under Core.Domain.Model

I’ve got the following session builder code:

return Fluently.Configure()
    .Database(SQLiteConfiguration.Standard.UsingFile("c:\blog.db"))
    .Mappings(x => x.AutoMappings.Add(
        AutoPersistenceModel.MapEntitiesFromAssemblyOf<Blog>()
            .Where(type => 
                type.Namespace.EndsWith("Domain.Model") &&
                !type.IsAbstract &&
                type.IsClass &&
                type.GetProperty("Id") != null)    
     )).BuildSessionFactory();

When I try to test a simple query, I get an application exception on the above code (somewhere) and the error message is:

System.ApplicationException: Error
while trying to build the Mapping
Document for
‘Core.Domain.DomainEntity’ —>
NHibernate.MappingException: Could not
compile the mapping document:
(XmlDocument) —>
System.IndexOutOfRangeException: Index
was outside the bounds of the array.

It seems that my code/NHibernate is trying to map DomainEntity, but is failing. I thought my above code explicitly stated not to map that object by using the type.Namespace.EndsWith(“Domain.Model”). Is that correct? Where am I going astray here?

Thanks for any and all help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T18:32:33+00:00Added an answer on May 11, 2026 at 6:32 pm

    Looks like I forgot the following line:

    .WithSetup(a => a.IsBaseType = type => type == typeof(DomainEntity))
    

    So, in its entirety, my new automapping code looks like this:

    return Fluently.Configure()
                    .Database(SQLiteConfiguration.Standard.UsingFile("c:\\blog.db"))
                    .Mappings(x => x.AutoMappings.Add(
                       AutoPersistenceModel.MapEntitiesFromAssemblyOf<Blog>()
                           .WithSetup(a => a.IsBaseType = type => type == typeof(DomainEntity))
                           .Where(type =>
                               type.Namespace.EndsWith("Domain.Model") &&
                               !type.IsAbstract &&
                               type.IsClass &&
                               type.GetProperty("Id") != null)
                       )).BuildSessionFactory();
    

    This seems to have cleared my error right up.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This one has me scratching my head. I'm running Subversion 1.3.1 (r19032) on Ubuntu.
Alright, this one (3a; sample problem with provided answer) has got me scratching my
This question has spawned out of this one. Working with lists of structs in
I'm really scratching my head on this one: I have an object (MyObject) which
I've been scratching my head over this one for a couple hours now, I've
I have been scratching my head for a while on this one. I dont
My newness to xcode has had me scratching my head over this problem for
I'm scratching my head over this. I have a moderately successful app which has
This one has me kind of stumped. I want to make the first word
This one has been bugging me for a while now. Is there a way

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.