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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:26:04+00:00 2026-06-07T22:26:04+00:00

Simple: How do I get the mapped table name from a DbEntityEntry object? I’m

  • 0

Simple: How do I get the mapped table name from a DbEntityEntry object? I’m inside a class that extends DbContext. I’ve seen examples for ObjectContext but doesn’t apply to CF.

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-06-07T22:26:06+00:00Added an answer on June 7, 2026 at 10:26 pm

    As stated in another answer, the table name can be obtained using the IObjectContextAdapter

     private string GetTableName(DbEntityEntry ent)
            {
                ObjectContext objectContext = ((IObjectContextAdapter) this).ObjectContext;
                Type entityType = ent.Entity.GetType();
    
                if (entityType.BaseType != null && entityType.Namespace == "System.Data.Entity.DynamicProxies")
                    entityType = entityType.BaseType;
    
                string entityTypeName = entityType.Name;
    
                EntityContainer container =
                    objectContext.MetadataWorkspace.GetEntityContainer(objectContext.DefaultContainerName, DataSpace.CSpace);
                string entitySetName = (from meta in container.BaseEntitySets
                                        where meta.ElementType.Name == entityTypeName
                                        select meta.Name).First();
                return entitySetName;
            }
    

    The above code also tests for proxies. Hope this helps someone else who comes to this link as I assume the original poster solved this a long time ago.

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

Sidebar

Related Questions

I'm trying to use a simple HTTP get to load a string from a
One possible solution could be simple HTTP get or post request, but that wouldn't
I have a legacy table with composite keys that are mapped to 3 other
I am trying to define simple getter/setter methods for a mixin class that I
I have an object that is mapped to have a set of objects, very
I want to make just a simple function that sums all with same name.
A simple get request made to url on my server which returns HTML of
Why can't I do a simple: Get-Website | where { $_.Bindings -like *DOMAIN* }
Mozilla's own specification says simple GET or POST should be natively CORS's without preflighting
I'm already thinking about to start using simple GET string. Or I'm not so

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.