OrientDB-NET.binary icon indicating copy to clipboard operation
OrientDB-NET.binary copied to clipboard

ODatabase.Select call keeps running if there no record matches to filter

Open dvdnhm opened this issue 6 years ago • 0 comments

I created a simple search for Person vertex

List<ODocument> lstUser = db.Select("@rid, firstName, lastName")
	.From("person")
	.Where("email").Equals<string>(user.email)
	.ToList();

the query works under a second if the email exist in the vertex and just waits if the record does not exist.

dvdnhm avatar Feb 22 '19 16:02 dvdnhm