Запрос Linq возвращает true или false
у меня есть запрос, где он должен возвращать TRUE или FALSE.
var query = from c in db.Emp
from d in db.EmpDetails
where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
// It should return TRUE when this above statement matches all these conditions
и я хочу прикрепить этот результат запроса к свойству (строкового типа данных)
this.result = Conert.ToBoolean(query);
как добиться этого в LINQ ?
EDIT:
класс EmpMapper
public class EmpMapper
{
EmpEntities db;
// ID column already exists in the DB
private int ID;
// I am creating this property to add it from the UI side, depending on the certain conditions in the query. That is why I created a separate class to map the existing ID from the DB
bool result;
public EmpMapper(int ID, bool result)
{
this.db = new EmpEntites();
this.ID = ID;
var query = from c in db.Emp
from d in db.EmpDetails
where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
// It should return TRUE when this above statement matches all these conditions
this.result = Convert.ToBoolean(query);
}
public int ID
{
get{return this.ID;}
set{this.ID = value;}
}
public bool result
{
get{return this.result;}
set{this.result = value;}
}
}
класс MainViewModel
List<EmpMapper> empMapCol = new List<EmpMapper>();
private void Page_Loaded(object sender, RoutedEventArgs e)
{
var emp_query = from c in db.Emp
orderby c.ID
select a;
List<Emp> empCol = emp_query.ToList();
foreach(Emp item in empCol)
{
this.empMapCol.Add(new EmpMapper(item.ID, item.result));
}
datagrid1.ItemsSource = empMapCol;
}
}
5 ответов
попробуйте это,
var query = (from c in db.Emp
from d in db.EmpDetails
where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
select c
).Any();
this.result = query; //no need to convert to boolean its already bool value
Если я правильно вас понимаю, вы хотите получить true
если один из результатов запроса соответствует всем условиям. В этом случае попробуйте что-то вроде этого:
var found =
(from c in db.Emp
from d in db.EmpDetails
where c.ID == y.ID && c.FirstName == "A" && c.LastName == "D"
select c).Any();
this.result = found.ToString();
Вы можете использовать .Любой() или .Рассчитывать.)( Any () выполняет лучше. (Проверьте это и чтобы понять, почему)
.Any ()
var query = from c in db.Emp
from d in db.EmpDetails
where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
// It should return TRUE when this above statement matches all these conditions
this.result = query.Any().ToString()
.Count ()
var query = from c in db.Emp
from d in db.EmpDetails
where c.ID == d.ID && c.FirstName == "A" && c.LastName == "D"
// It should return TRUE when this above statement matches all these conditions
this.result = (query.Count() > 0).ToString()
var query = from c in db.Emp
from d in db.EmpDetails
select new { c.ID == y.ID &&
c.FirstName == "A" &&
c.LastName == "D" };
Если вы действительно хотите иметь "true" или "false" строку:
public string result
{
get
{
return db.Emp.SelectMany(c => db.EmpDetails, (c, d) => new {c, d})
.Where(@t => c.ID == y.ID && c.FirstName == "A" && c.LastName == "D")
.Select(@t => c)).Any().ToString();
}
}
но я бы предложил сделать свойство "result" bool и удалить ToString(). Как только у вас есть bool, вы всегда можете сделать ToString () на нем