Hello I have a problem and i cant solve it for 3 days. I've red many posts here and in google, but I cant find the solution.
In db I have column "Gener" - nvarchar(350) which contains for example this:
row 1: 1,4,32,11
row 2: 32,11
row 3: 1
row 4: 4,56,1,23
row 5: 4
From checkboxlist I check this values: 1,4 which add to
List<string> gnr = new List<string>();
The result which I want is row 1 and row 4.
I've made (take from stackoverflow) code which result is row 3 and row 4:
var result = from m in db.Movies
where gnr.Contains(m.Gener)
select m;
And code which result is row 1, row 3, row 4 and row 5:
foreach (string term in gnr)
{
var trb = db.movies.Where(o => o.Gener.Contains(term));
}
With Ole DB I can make it, but with LINQ I can't here is the code there:
List<string> Gener = new List<string>();
Gener = Action,Comedy
StringBuilder builder = new StringBuilder();
string lastItem = Gener[Gener.Count - 1];
// Here I made string Which I'll add to cmd string
foreach (string safePrime in Gener)
{
if (safePrime != lastItem)
{
builder.Append("((gener LIKE '%" + safePrime + "%')) AND").Append(" ");
}
else
{
builder.Append("((gener LIKE '%" + safePrime + "%')) ORDER By ID DESC").Append(" ");
}
}
string dbSelect = builder.ToString();
//The result from loop
dbSelect = "((GenerLIKE '%Action%')) AND ((GenerLIKE '%Comedy%')) ORDER By ID"
//Add dbSelect to exist cmd
Cmd1.CommandText = "SELECT * FROM movies WHERE " + dbSelect;
And the result here is what I want with LINQ, select all movies that are Action and Comedy Thanks for the time you red this, I'll be very thankful for some help. Sorry for my english I hope it is readable.