Loads and parses EDMX files, extracting Entity Data Model components and EasyAF extensions.
public class EdmxLoader
public EdmxLoader()
public EdmxLoader(string filePath)
[ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception)
public XElement CsdlElement { get; }
public EdmItemCollection EdmItems { get; }
public List<CompilerError> EdmxSchemaErrors { get; }
public List<EntityComposition> Entities { get; }
public EntityContainer EntityContainer { get; }
public List<EntitySet> EntitySets { get; }
public string FilePath { get; }
public bool IsEFCore { get; }
public StorageMappingItemCollection Mappings { get; }
public string ModelNamespace { get; set; }
public XElement MslElement { get; }
public string OnModelCreatingMethod { get; }
public XElement SsdlElement { get; }
public StoreItemCollection StoreItems { get; }
public void Load(bool fixProvider = true)
public void Load(string content, bool fixProvider = true)