DocumentExists() fails when a wildcard is used in its Type
问题 The problem also exists for Update() using a Type wildcard, but I found that DocumentExists() does the same thing, so I've distilled the issue down here: This works... var docExists = client.DocumentExists<object>(d => d .Index(indexname) .Id(myId) .Type("Abcdef")); but this fails... var docExists = client.DocumentExists<object>(d => d .Index(indexname) .Id(myId) .Type("Abc*")); It also fails if I omit the Type altogether. Anyone know how to make this work? (Even if it worked regardless of