Print Page | Close Window

Get EntityGroup Name From Entity Name

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce 2009
Forum Discription: For .NET 3.5
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=1375
Printed Date: 05-Apr-2025 at 12:41am


Topic: Get EntityGroup Name From Entity Name
Posted By: mbevins1
Subject: Get EntityGroup Name From Entity Name
Date Posted: 15-Jul-2009 at 11:39am

Is there a way to get the EntityGroup Name from the Entity Name?

Entity Name = Vehicle
 
Get Group Name of Vehicles?
 
I would just add S to the end of the name but that may not always be correct.
 



Replies:
Posted By: kimj
Date Posted: 15-Jul-2009 at 4:35pm
The EntityGroup name is probably not what you're after, since that name will be something like "DomainModel:Customer".  The "entity set name" is probably what you're looking for.  The entity set name is primarily a logical container for entities and is used by the Entity Framework.  In DevForce, it's the entity set name which is used for the generated queries on the EntityManager (eg, "Vehicles") and a DefaultEntitySetName attribute also adorns generated entities.  There is actually a subtle difference between a default entity set name for an entity type and the actual entity set name an instance of the type belongs to, but in most applications only the default entity set name is ever used.  You can get this name through the EntityMetadata -
 
   aVehicle.GetEntityMetadata().DefaultEntitySetName;
or
  entityManager.MetadataStore.GetEntityMetadata(typeof(Vehicle)).DefaultEntitySetName;
 


Posted By: mbevins1
Date Posted: 16-Jul-2009 at 4:14am
Your are right, Thanks



Print Page | Close Window