private IEdmModel Build(BoundedContextElement context) { if (context.ConceptualModel == null) { throw new InvalidOperationException("The conceptual model is not specified."); } return(BuildModel(context.ResolveFullName(), context.ConceptualModel)); }
private IEdmModel Build(BoundedContextElement context) { if (context.ConceptualModel == null) { throw new InvalidOperationException("The conceptual model is not specified."); } return BuildModel(context.ResolveFullName(), context.ConceptualModel); }
private static IEdmModel Build(BoundedContextElement context) { if (context == null) { throw new ArgumentNullException("context"); } if (context.ConceptualModel == null) { throw new InvalidOperationException("The conceptual model is not specified."); } return BuildModel(context.ResolveFullName(), context.ConceptualModel.RootEntities); }
private static IEdmModel Build(BoundedContextElement context) { if (context == null) { throw new ArgumentNullException("context"); } if (context.ConceptualModel == null) { throw new InvalidOperationException("The conceptual model is not specified."); } return(BuildModel(context.ResolveFullName(), context.ConceptualModel.RootEntities)); }