Here are the examples of the csharp api class System.Data.Common.DbXmlEnabledProviderManifest.GetReadOnlyCollection(System.Data.Metadata.Edm.PrimitiveType, System.Collections.Generic.Dictionary, System.Collections.ObjectModel.ReadOnlyCollection) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Example
0
1. Example
View licensepublic override System.Collections.ObjectModel.ReadOnlyCollection<FacetDescription> GetFacetDescriptions(EdmType type) { Debug.Assert(type is PrimitiveType, "DbXmlEnabledProviderManifest.GetFacetDescriptions(): Argument is not a PrimitiveType"); return GetReadOnlyCollection(type as PrimitiveType, _facetDescriptions, Helper.EmptyFacetDescriptionEnumerable); }