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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:13:48+00:00 2026-06-15T05:13:48+00:00

i am defining some of my models atm using EF5 Code First. I have

  • 0

i am defining some of my models atm using EF5 Code First. I have these
three sample classes with a many-to-many relationship:

public class Team
    {
        [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
        public int Team_Id { get; set; }
        [MaxLength(150)]
        public string TeamName { get; set; }

        public virtual ICollection<User> Users { get; set; }
        [public virtual ICollection<Role> Roles { get; set; }  // 1

        [Timestamp]
        public byte[] TimeStamp { get; set; }
    }

public class User
    {
        [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
        public int User_Id { get; set; }
        [MaxLength(150)]
        public string LoginName { get; set; }
        [MaxLength(150)]
        public string Nachname { get; set; }
        [MaxLength(150)]        
        public string Vorname { get; set; }

        public virtual ICollection<Team> Teams { get; set; } 
        public virtual ICollection<Role> Roles { get; set; }   // 2

        [Timestamp]
        public byte[] TimeStamp { get; set; }
    }

public class Role
    {
        [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
        public int Role_Id { get; set; }
        [MaxLength(50)]
        public string RoleName { get; set; }

        [Timestamp]
        public byte[] TimeStamp { get; set; }
    }

As you can see there is a many-to-many relationship between teams and
users. I am trying to get this to work for hours. I always get an JS
Exception with the error message “bad nav properties” in VS 2012. At
first i thought it was the ICollections Teams/Users in
Users/Teams-Class but it wasnt. The problem seems to be the two calls
1) and 2). I f i remove either one of them it works. Renaming one and
keeping both fields active still throws the error. Maybe anyone has
an idea what is going on.

Many thanks

This question was posted by SirSmackalot on our IdeaBlade forums. I am reposting the question and answer here since I think it will be useful to the Breeze Stack Overflow community.

  • 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-06-15T05:13:49+00:00Added an answer on June 15, 2026 at 5:13 am

    Breeze doesn’t yet support many-to-many relations where the mapping table is hidden. The problem is that Breeze depends on a “foreign key” concept to keep track of relationships, and this is not available for many-to-many relations defined with no payload in the Entity Framework.

    What does work is to change the many-to-many relationship into two 1-to-many relations with a linking entity. Basically, just expose the mapping table as another entity type. For example:

    Team — TeamUser (1-to-many)

    User — TeamUser (1-to-many)

    We do plan to support Entity Framework’s official many-to-many relationship in a later release but we need to prioritize this. So please add/vote for this feature request using the feedback mechanism on the website (https://breezejs.uservoice.com/forums/173093-breeze-feature-suggestions/filters/top). This helps us decide which features to focus on next.

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

Sidebar

Related Questions

Hi I am using CodeIgniter with DataMapper and really need some help defining relationship
I'm having some problems when defining inner classes in a Test class inherited from
Reading some Verilog code, there seem to be two ways of defining arguments in
I'm defining a style XML for my android app. I have some TTF files
I have some code here. I recently added this root_id parameter. The goal of
Imagine I have a basic.xsd file defining some attribute myAttribute in some element myElement
I have declared some Non-Content data in an Orchard CMS by defining the records
I have a Department entity which has a one-to-many relationship to an Employee entity.
When defining a resources in routes.rb in Rails, I have the following problem: My
After defining variables, functions, etc., can you save what you have done on the

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.