Click here to Skip to main content
15,886,840 members
Articles / Programming Languages / C#

Parsing the Entity Framework EDMX file

Rate me:
Please Sign up or sign in to vote.
4.38/5 (7 votes)
3 Jun 2010CPOL4 min read 58.5K   1.2K   26  
Looking at ways to parse an Entity Framework EDMX file
namespace EdmxLibrary.DataObjects
{
	public class Endpoint
	{
		/// <summary>
		/// This will take on the name of the Navigation Property Name for Self Referenced Tables
		/// </summary>
		public string TableName { get; set; }

		public RelationshipMultiplicity Multiplicity { get; set; }
		public string EntityName { get; set; }
		public string EntityNamespace { get; set; }
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Webbert Solutions
United States United States
Dave is an independent consultant working in a variety of industries utilizing Microsoft .NET technologies.

Comments and Discussions