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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:21:35+00:00 2026-05-27T20:21:35+00:00

Problem statement – [Business] 1—* [Branch] A business must have one or more branch(es).

  • 0

Problem statement – [Business] 1—* [Branch] A business must have one or more branch(es). Only one branch can be main branch.

I am have two design in my mind

  1. [Branch table] – {id, BusinessID (FK), Name, etc , IsMainBranch}
  2. [Branch table] – {id, BusinessID (FK), Name, etc }, [MainBranch table] – {BranchID (PK, FK), BusinessID (FK)}.
  3. [Business table] – {id, name, mainbranchid}, [Branch table] – {id, BusinessID (FK), Name, etc}

Problem with #1 – To put constrain on IsMainBranch I have to use triggers, which can go out of sync latter.

Problem with #2 – Bit complicated to access the data in EF.

Problem with #3 – Don’t think its a good design.

I am using EF 4.1 as ORM and don’t want to make things complicated, which design I should choose. Please suggest if there is a better/alternate way available for the same.

  • 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-27T20:21:36+00:00Added an answer on May 27, 2026 at 8:21 pm

    With SQL Server 2008+ you can use filtered indexes

    In your Branch table, just have a flag IsMainBranch. Then create a unique filtered index: this will allow one row only where IsMainBranch= 1 per Business.

    Branch table:

    id (PK)
    BusinessID (FK)
    Name
    ...
    IsMainBranch 
    

    Then

    CREATE UNIQUE INDEX IX_MainBranch 
            ON Branch(BusinessID) 
            WHERE IsMainBranch = 1;
    

    This gives

    • simpler table structure
    • no triggers
    • the DB engine enforces this for you
    • no circular FKs (no MainBranchID in the Business table)

    Also see:

    • The proper way to implement unique constraint that allows multiple NULL values in SQL Server
    • SQL Server bit column constraint, 1 row = 1, all others 0
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry for the long problem statement...I've spent two days debugging and have a lot
I have a design and object structuring related question. Here is the problem statement:
I have a problem with a continue statement in my C# Foreach loop. I
I have a problem with the SQL statement detailed below. The query returns the
I have an big problem with an SQL Statement in Oracle. I want to
My problem is that I have to set a variable in a try statement
I have a problem when trying to execute this update statement (below) using C#
My problem statement is : I want to write design file management (add, copy,
UPDATE:: OK i am putting the original problem statement here Given the Main class
Warning: I may have the wrong 'problem statement' but here it goes: A Campaign

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.