Hibernating Rhinos Ltd
Oren Eini l CEO l Mobile: + 972-52-548-6969
Office: +972-4-622-7811 l Fax: +972-153-4-622-7811
--
You received this message because you are subscribed to the Google Groups "RavenDB - 2nd generation document database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ravendb+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[<CLIMutable>]type WithMap = {Name: stringAddress: Map<string, string>}let testQuery1 (store: Document.DocumentStore) =use session = store.OpenSession("Test")let temp = {Name = "foo"; Address = Map.ofList [ ("1", "one"); ("2", "two"); ("3", "three") ]}session.Store(temp)session.SaveChanges()query {for record in session.Query<WithMap>() doselect record}|> Seq.toArraylet testQuery2 (store: Document.DocumentStore) =use session = store.OpenSession("Test")query {for record in session.Query<WithMap>() doselect record}|> Seq.toArray
System.InvalidOperationException was unhandledMessage: An unhandled exception of type 'System.InvalidOperationException' occurred in Raven.Client.Lightweight.dllAdditional information: Could not convert document WithMaps/193 to entity of type Program+WithMap