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
Handles the case where a singleton has a navigation property that defines an implicit EntitySet using "ContainsTarget="true"". This allows us to generate code that correctly lets workloads navigate from a child object to a singleton's implicit EntitySet by $ref
//If we are unable to find a valid EntitySet for the property, treat this
185
+
//as an exception so the service has an opportunity to correct this in the metadata
186
+
thrownewException("Found no valid EntitySet for the given property.");
187
+
156
188
}catch(Exceptione)
157
189
{
158
-
logger.Error("The navigation property \"{0}\" on class \"{1}\" does not specify it is self-contained nor is it defined in an EntitySet",odcmProperty.Name.ToString(),odcmProperty.Class.FullName.ToString());
190
+
logger.Error("The navigation property \"{0}\" on class \"{1}\" does not specify it is self-contained nor is it defined in an explicit or implicit EntitySet",odcmProperty.Name.ToString(),odcmProperty.Class.FullName.ToString());
0 commit comments