tablestorage-0.1.0.2: Azure Table Storage REST API Wrapper

Safe HaskellSafe-Infered

Network.TableStorage.Query

Description

This module contains functions which help when unmarshalling query responses

Synopsis

Documentation

edmBinary :: String -> Entity -> Maybe StringSource

Find the value in a binary-valued column or return Nothing if no such column exists

edmString :: String -> Entity -> Maybe StringSource

Find the value in a string-valued column or return Nothing if no such column exists

edmBoolean :: String -> Entity -> Maybe BoolSource

Find the value in a boolean-valued column or return Nothing if no such column exists

edmDateTime :: String -> Entity -> Maybe UTCTimeSource

Find the value in a date-valued column or return Nothing if no such column exists

edmDouble :: String -> Entity -> Maybe DoubleSource

Find the value in a double-valued column or return Nothing if no such column exists

edmGuid :: String -> Entity -> Maybe StringSource

Find the value in a Guid-valued column or return Nothing if no such column exists

edmInt32 :: String -> Entity -> Maybe IntSource

Find the value in an integer-valued column or return Nothing if no such column exists

edmInt64 :: String -> Entity -> Maybe IntSource

Find the value in an integer-valued column or return Nothing if no such column exists