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 6765525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:43:19+00:00 2026-05-26T14:43:19+00:00

I have 2 classes (summarized for brevity) : public class Product : Entity<Guid> {

  • 0

I have 2 classes (summarized for brevity) :

public class Product : Entity<Guid>
{      
    ...    
    public virtual IList<Ingredient> Ingredients { get; set; }          
    public Product(){Ingredients = new List<Ingredient>();}    
}

and

public partial class Ingredient : Entity<int>
{
    ...
    public virtual IList<Product> Products { get; set; }
    public Ingredient(){Products = new List<Product>();}
}

They have a ManyToMany relationship, and I want to do:

  • if I delete one ingredient, the product is not removed but only the ingredient for his list.
  • if I delete one product, the ingredients are all without being deleted.

I did this map, but I can’t get this to work.

orm.ManyToMany<Product, Ingredient>();
orm.Cascade<Product, Ingredient>(CascadeOn.DeleteOrphans);
  • 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-26T14:43:19+00:00Added an answer on May 26, 2026 at 2:43 pm

    Finally, I got it.
    This is the way I could resolve this, in case to help someone more:

            orm = new ObjectRelationalMapper();
            mapper = new Mapper(orm);
            //...
    
            mapper.Class<Ingredient>(c =>
            {
               /* ...[MAP OTHERS PROPERTY]...*/
               // Many to many relationship in One side
                c.Bag(p => p.Products, pm => pm.Inverse(false), rel => rel.ManyToMany());
            });
    
           // Many to many relationship in other side
           orm.ManyToMany<Product, Ingredient>();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have classes public class BlogPost { public int Id {get;set;} public string Body{get;set;}
I have classes like this public class someList { public string strOne {get; set;}
I have classes which have automatic properties only like public customerName {get; set;}. They
I have some classes layed out like this class A { public virtual void
We have classes public Invoice: EntityObject { public EntityCollection<InvoicePosition> Positions { get {...}; set{...};
If I have classes of Type A and B: public class A { public
I have classes like this one: class SomeObject { public function __construct($param1, $param2) {
I have classes as below. public interface ITest <T> { public Set<T> methodHere(); }
I have classes public class FooKeyedCollection : KeyedCollection<FooType,Foo> { } public enum FooType {
I have classes as follows namespace Coverage { public class ClassInfo { public string

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.