public static IEdmModel AddMetadataIdentityAnnotation(this IEdmModel model, Uri identity)
        {
            var annotation = new MetadataIdentityAnnotation(identity);
            model.SetAnnotationValue(model, annotation);

            return model;
        }
Exemple #2
0
        public static IEdmModel AddMetadataIdentityAnnotation(this IEdmModel model, Uri identity)
        {
            var annotation = new MetadataIdentityAnnotation(identity);

            model.SetAnnotationValue(model, annotation);

            return(model);
        }