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

  • SEARCH
  • Home
  • 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 959605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:03:13+00:00 2026-05-16T01:03:13+00:00

I seem to have major problems getting a one to many relationship to work

  • 0

I seem to have major problems getting a one to many relationship to work in nhibernate

and my classes are

public class Kitten
{
    public virtual int? Id { get; set; }
    public virtual String Name { get; set; }
}

public class Product 
{
    public Product()
    {
        Kittehs = new List<Kitten>();
    }
    public virtual int? ProductId { get; set; }
    public virtual string ProductName { get; set; }
    public virtual UnitOfMeasure UOM { get; set; }
    public virtual IList<Kitten> Kittehs { get; set; }
}

And here’s my a snippet program:

First:

 public class ProductRepository
 // snip
    public void Save(Product saveObj)
    {
        using (var session = GetSession())
        {               
            using(var trans = session.BeginTransaction())   
            {
                session.SaveOrUpdate(saveObj);
                trans.Commit();
            }
        }
    }

and then the calling code:

        var pNew = new Product { ProductName = "Canned Salmon" ,UOM = uomBottle};        
        var tiddles = new Kitten() {Name = "Tiddles"};
        pNew.Kittehs.Add(tiddles);
        productRepository.Save(pNew); //ERROR here

When I call productRepository.Save

I get

{“The type NHibernate.Collection.Generic.PersistentGenericSet1[Acme.Model.Kitten] can not be assigned to a property of type System.Collections.Generic.IList1[Acme.Model.Kitten] setter of Acme.Model.Product.Kittehs”}

so I’m assuming the mapping is wrong somehow but I can’t see where.

  • 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-16T01:03:13+00:00Added an answer on May 16, 2026 at 1:03 am

    Well… you have a Set and then a List for Acme.Model.Kitten… Try to look at your mapping files.

    You’re using public virtual IList<Kitten> Kittehs { get; set; }
    in your Product class but inside your mapping this same property is mapped to a Set.

    Bag maps to IList

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

Sidebar

Related Questions

I seem to have a problem passing some strings on from one form to
I seem to have looked through many solution on here and the web and
I seem to have a problem with getting MVC to fill in my custom
I seem to have a major problem. I opened up Xcode and my main
I have been working on interfaces lately and I have many problems with imagebutton
I have three major classes, lets say A, B and C. A instantiates both
I seem to have found a bug in jQuery UI that duplicates dragged elements
I seem to have hit a snag while building my project using Ant. The
i seem to have some trouble installing autopy.h https://github.com/msanders/autopy/#introduction i already tried the installation
I seem to have the Twitter Bootstrap carousel working properly as far as moving

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.