You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
The following code snippit is from edm_model_reader::handle_begin_element.As we can see,the construction of m_current_container has nothing to do with extents which is obtained from edm:Extends attribute.
else if (elementName == U("EntityContainer"))
{
::odata::utility::string_t name;
::odata::utility::string_t extends;
bool is_default = true;
while (move_to_next_attribute())
{
if (get_current_element_name() == U("Name"))
{
name = get_current_element_text();
}
else if (get_current_element_name() == U("Extends"))
{
extends = get_current_element_text();
}
}
m_current_container = std::make_shared<edm_entity_container>(name, is_default);
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The following code snippit is from edm_model_reader::handle_begin_element.As we can see,the construction of m_current_container has nothing to do with extents which is obtained from edm:Extends attribute.
The text was updated successfully, but these errors were encountered: