vote up 0 vote down star

Here is a statement in SubSonic which does a find using the strongly typed column ProductId:

var products = Product.Find(x => x.ProductID <= 10);

Is there a way to not use a strongly typed column name and instead specify the column name with a string literal like so:

var columnName = "SampleColumn";
var products = Product.Find(x => x[columnName] <= 10);

Or something similar?

flag

1 Answer

vote up 0 vote down check

You can't do this with linq but you could do it using a fluent query as follows:

string columnName = "SampleColumn";

List<Product> products = new Select()
  .From<Product>()
  .Where(columnName).IsLessThanOrEqualTo(10)
  .ExecuteTypedList<Product>();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.