30% OFF - 10th Anniversary discount on new purchases until December 15 with code: ZZZANNIVERSARY10
Entity Framework Extensions Edmx
On rare occasion, your model might not be compatible yet with our model reader. If that's your case and we ask you for your model, you can use one of the following methods to provide the required information:
Code First
Use the GetModelXDocument
method to generate the Edmx to send.
public string GetModelXDocument(DbContext context) { XDocument doc; using (var memoryStream = new MemoryStream()) { using (XmlWriter xmlWriter = XmlWriter.Create(memoryStream, new XmlWriterSettings { Indent = true })) { EdmxWriter.WriteEdmx(context, xmlWriter); } memoryStream.Position = 0; doc = XDocument.Load(memoryStream); } return doc.ToString(); } DbContext context = new EntityContext(); string edmx = GetModelXDocument(context);
Database First
Provide us the [fileName].edmx directly.
ZZZ Projects