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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:49:28+00:00 2026-06-10T23:49:28+00:00

I have some tables which stores the file’s data, e.g TabA , TabB ,

  • 0

I have some tables which stores the file’s data, e.g TabA, TabB, TabC, … TabX. Each of them has the same column FileTypeID.

For each table I need to use the extension method to get the rows depending of the condition of the FileTypeID column. To do so, I have an extension method like that:

public static class FilesTab_Extenders
{
    public static IList<TabA> GetSpecificFiles(this EntityCollection<TabA> mc)
    {
        ///
    }
}

but, I don’t want mindlessly clone the same code for the rest of tables. The only difference will be the parameter – this EntityCollection<TabB>, this EntityCollection<TabC> etc. So, is it somehow possible to make the universal code for that scenario ?

  • 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-10T23:49:30+00:00Added an answer on June 10, 2026 at 11:49 pm

    To me the easiest way to do this would be to use an interface. You would then have your partial classes implement this interface and use it in your extention method:

    public interface IFileTypeable
    {
        Guid FileTypeId { get; set;}
    }
    

    Now you would create partial class files for each of your TabA, TabB, TabC, … TabX that follow this template:

    namespace MyDBContextNamespace
    {
        public partial class TabA : IFileTypeable
        {
            // no need to do anything, the property is already implemented on the original class file.
        }
    
        public partial class TabB : IFileTypeable
        {
            // no need to do anything, the property is already implemented on the original class file.
        }
    }
    

    Finally your extention method would be changed to look like this:

    public static IList<IFileTypeable> GetSpecificFiles(this EntityCollection<IFileTypeable> mc)             
    {             
        foreach (var item in mc)
        {
            Guid fileTypeId = item.FileTypeId;       
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an application which stores its data in SQL Server. Each table has
I have two tables which have some transactional stuff stored in them. There will
I have a data table which already has some values, plus it is getting
I have an access table which has some cells as blank ( no data
Ok, I have a table which contains multiple rows. Each row contains some data
I have an application which takes data from a file and stores it for
I have some tables for which I have no reason to ever update from
We have this current database which we need to replace some tables by anther
I have the query to select some columns from two tables, which must contain
I have unpredictable frequency of Incoming csv data file which I need to store

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.