Isen
Isen
This happens on insert as well: Code: ``` var wrapped = Wrapper.Wrap(key, state); var result = await db.InsertAsync(wrapped) ``` Exception: ``` ArangoDB.Client.ArangoServerException: collection or view not found: Wrapper`1. ErrorNumber: 1203...
In fact, running the simplest of insertion script throws collection not found: ``` var result = db.Insert(new State()); ``` throws ``` ArangoDB.Client.ArangoServerException: collection or view not found: State. ErrorNumber: 1203...
Basically, I cannot get your example code on your website to run: ``` // insert new document and creates 'Person' collection on the fly db.Insert(person); ``` this doesn't seem to...
It seems like auto create collection was dropped in ArangoDb 3.0, which means your documentation is still based on the old version. If that's the case, then there needs to...
It seems like your collection name resolution is also causing problems with generics. `type.Name` will return things like Wrapped`1. If you'd prefer, I will be able to send PRs for...
In the case of `db.Document(string key)`, this method does not even return a `BaseResult` and thus all useful information is lost when the information is flattened in the exception.
Hello @gjuttla May I ask how do you that the ASP.NET Core runtime files were removed? In my opinion, the brew logs, and `dotnet --info` returned correct information. See: ```...
Ohh! It's not supposed to uninstall any of the runtimes. If there is another version of dotnet installed that depends on the 6.0.1 ASP.NET runtime, this may become a problem....
> I tested and will not fail when using connection_factory=LogicalReplicationConnection, but kwarg is lost and does not do anything (the aiopg Cursor is returned, which does not have ReplicationCursor properties)....
@swissarmykirpan Yes, this is an IMMENSE PR. I don't think we should merge this PR in this form. I'm using this PR so that everyone can get a chance to...