ra0o0f / arangoclient.net

ArangoDB .NET Client with LINQ support
Apache License 2.0
99 stars 37 forks source link

Anonymous collection or dynamic objects #69

Open smust opened 7 years ago

smust commented 7 years ago

Are you planning to support Anonymous collection/dynamic objects/schema less collection?

ra0o0f commented 7 years ago

@smust if by dynamic you mean not to specify an object type. collections can be accessed this way, for example:

db.Collection("CollectionName")
                    .Insert(new
                    {
                        MemberName = "Something"
                    });

let me know what are you trying to do, i will tell that its supported or not