I have a List property of type string. I would like to search my database to make sure that the list matches the results. For example:
List<string>strings = new List<string>({"test1","test2","etc"});
I would now like to do a search in my database using linq to check if under certain condition that these strings exist.
_databaseContext.Names.Where(x=>x.name == strings && specialID == 1);