LINQを使用して文字列リストから一致する値を比較して取得する必要があります。私のコードを見てください。
コード
Split = Id.Split(',');
List<string> uids = new List<string>(Split);
var model = (from xx in Db.ItemWeedLogs
where xx.ItemNo == uids
// I need to pass a string list to extract the matching record.
select xx).ToList();