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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:11:30+00:00 2026-05-17T23:11:30+00:00

I have a domain model specifying the interfaces or my domain and I’m using

  • 0

I have a domain model specifying the interfaces or my domain and I’m using DI to hook it up to an entity framework 4 repository implementation. In my domain I have the following:

public interface IInboundGateway : IGateway
{
    ICollection<IInboundNumber> InboundNumbers { get; set; }
}

I then have my entity framework model that has generated the InboundGateway class:

public partial class InboundGateway : EntityObject
{
    public EntityCollection<InboundNumber> InboundNumbers { get; set; }
}

In order to implement the IInboundGateway inteface I created a partial InboundGateway class.

public partial class InboundGateway : IInboundGateway
{
}

Eventhough EntityCollection<> implements ICollection<> and InboundNumber implements IInboundNumber I am getting an error reporting that InboundGateway does not implement interface IInboundGateway.InboundNumbers because InboundGateway.InboundNumbers does not have the matching return type ICollection<IInboundNumber>

Im pretty certain this is mental as EntityCollection does implement ICollection and InboundNumber does implement IInboundNumber.

Any help would be massively appreciated thanks.

  • 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-17T23:11:31+00:00Added an answer on May 17, 2026 at 11:11 pm

    You have to be aware that EntityCollection<InboundNumber> is a sub type of ICollection<InboundNumber> but is NOT a subtype of ICollection<IInboundNumber>. These are 2 different types and are not related.

    so in the entity object class you have:

    public EntityCollection<InboundNumber> InboundNumbers { get; set; }
    

    While the comopiler expects you to have:

    public ICollection<IInboundNumber> InboundNumbers { get; set; }
    

    If you could turn your EntityObjects to POCO, part of the problem would be solved since POCO classes using ICollection for their navigation properties by default. Also, you need to change your interface like this:

    public interface IInboundGateway : IGateway {
        ICollection InboundNumbers { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We're using interfaces to represent entity classes in our domain model. We have concrete
We have a simple domain model: Contact, TelephoneNumber and ContactRepository. Contact is entity, it
We have our domain model declared in rusty old hbm files, we wish to
So, I have a nice domain model built. Repositories handle the data access and
In my domain model I have an abstract class CommunicationChannelSpecification, which has child classes
I have an application A with a domain-model which is mapped to a database
I have a class in my domain model called JobPlan this class is stored
While fleshing out a hypothetical domain model, I have found myself wondering whether the
I have the following models. # app/models/domain/domain_object.rb class Domain::DomainObject < ActiveRecord::Base has_many :links_from, :class_name
I have a domain class containing a couple of fields. I can access them

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.