Если вам нужно использовать только DataContext
, вы можете построить выражение вручную. В этом случае я использую выражение селектора, но отражение в имени свойства (то есть в «имени») также подойдет:
static void Main()
{
string knownName;
using (DataClasses1DataContext ctx = new DataClasses1DataContext())
{
knownName = ctx.Customers.First().CompanyName;
}
using (DataContext ctx = new DataClasses1DataContext())
{
Console.WriteLine(ctx.Any<Customer, string>(
cust => cust.CompanyName, "none-such"));
Console.WriteLine(ctx.Any<Customer, string>(
cust => cust.CompanyName, knownName));
}
}
static bool Any<TEntity, TValue>(
this DataContext ctx,
Expression<Func<TEntity, TValue>> selector,
TValue value)
where TEntity : class
{
var lambda =
Expression.Lambda<Func<TEntity, bool>>(
Expression.Equal(
selector.Body,
Expression.Constant(value, typeof(TValue))),
selector.Parameters);
return ctx.GetTable<TEntity>().Any(lambda);
}
Струнный подход будет выглядеть так:
using (DataContext ctx = new DataClasses1DataContext())
{
Console.WriteLine(ctx.Any<Customer, string>("CompanyName", "none-such"));
Console.WriteLine(ctx.Any<Customer, string>("CompanyName", knownName));
}
...
static bool Any<TEntity, TValue>(
this DataContext ctx,
string propertyOrFieldName,
TValue value)
where TEntity : class
{
var param = Expression.Parameter(typeof(TEntity), "row");
var lambda =
Expression.Lambda<Func<TEntity, bool>>(
Expression.Equal(
Expression.PropertyOrField(param, propertyOrFieldName),
Expression.Constant(value, typeof(TValue))),
param);
return ctx.GetTable<TEntity>().Any(lambda);
}