it is possible to find some data by using this condition "that have the first letter A"
here is how i use find() to find id_cart that equal with the input
var store = await _cartCollection.Find(x => x.id_cart == entity.id_cart).ToListAsync();
but i want to change it to be like this, but i dont know how
string key = "ID";
var store = await _cartCollection.Find(x => x.id_cart "that have the first character" key).ToListAsync();
is it possible ? how should i do it ?