Sha256: 9308559448646c77be9a8e7b86936bcacdfd2b6ea94a04f29b5f9108ee416f0f
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
module OData # Internally used helper class for storing an entity property's metadata. This class shouldn't be used directly. class PropertyMetadata # The property name attr_reader :name # The property EDM type attr_reader :type # Is the property nullable? attr_reader :nullable # Feed customization target path attr_reader :fc_target_path # Should the property appear in both the mapped schema path and the properties collection attr_reader :fc_keep_in_content # Is the property a navigation property? attr_reader :nav_prop # Applies only to navigation properties; the association corresponding to the property attr_accessor :association # Creates a new instance of the Class Property class # # @param [Nokogiri::XML::Node] property_element from the EDMX def initialize(property_element) @name = property_element['Name'] @type = property_element['Type'] @nullable = ((property_element['Nullable'] && property_element['Nullable'] == "true") || property_element.name == 'NavigationProperty') || false @fc_target_path = property_element['FC_TargetPath'] @fc_keep_in_content = (property_element['FC_KeepInContent']) ? (property_element['FC_KeepInContent'] == "true") : nil @nav_prop = property_element.name == 'NavigationProperty' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_odata-0.1.1 | lib/ruby_odata/property_metadata.rb |