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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:22:17+00:00 2026-06-14T13:22:17+00:00

ForeignKeyAttribute is not workin on Interface? public class Client: CompanyForeignKeyMapper { public int Client;

  • 0

ForeignKeyAttribute is not workin on Interface?

public class Client: CompanyForeignKeyMapper
{
     public int Client;
}

public class CompanyForeignKeyMapper
{
     [ForeignKeyAttribute("Company")]
     int ClientId;
}

this code works fine. but when i change the class CompanyForeignKeyMapper to an Interface

public interface ICompanyForeignKeyMapper


public class Client: ICompanyForeingKeyMapper --> changed to interface

the attribute doesn’t seem to work.

  • 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-14T13:22:18+00:00Added an answer on June 14, 2026 at 1:22 pm

    When you declare the Client class as in your second example, it no longer inherits from the CompanyForeignKeyMapper class, so it will have no ClientId field. If you want it to inherit from CompanyForeignKeyMapper and for it to implement the ICompanyForeingKeyMapper interface, declare it like this:

    public class Client: CompanyForeignKeyMapper, ICompanyForeingKeyMapper
    

    Alternatively, you can define ClientId as a field for the interface, in which case Client class must implement it and can add its own ForeignKeyAttribute to it:

    public interface ICompanyForeignKeyMapper
    {
        int ClientId;
    }
    
    
    public class Client: ICompanyForeignKeyMapper
    {
        [ForeignKeyAttribute("Company")]
        int ClientId;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following model: class A(models.Model): name = models.CharField(max_length=50) content_type = models.ForeignKey(ContentType) This
I'm using Entity Framework 4.3 with a simple design: public class Post { [Key]
I can't find this attribute in EF5: http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.schema.foreignkeyattribute.aspx Can someone tell me where it
Here are my two POCOs: [Table(Movie, Schema= dbo)] public class Movie: BaseClass { public
I asked this ages ago but worded the question badly. I'm trying to specify
I'm building an ASP.NET MVC 3 site using the code-first Entity Framework 4 approach.
I've read How Should I Declare Foreign Key Relationships Using Code First Entity Framework
Using EF code first want to control the name of the genereted column WHEN
Very simply I am using Entity Framework 4.1 code first and I would like
I'm using Entity Framework 4.3 code-first with Oracle. I'm getting the following error: System.InvalidOperationException

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.