The linq-expressions tag has no wiki summary.
1
vote
2answers
58 views
Building a lambda expression using concatenation
Let's say I have these two entities :
Document, which contains a DateTime property (called Date).
Period, which contains two DateTime properties (called DateFrom and DateTo) that represents a period ...
4
votes
3answers
108 views
Building a custom predicate to act as a filter using a foreach loop
I need to filter a list of documents by passing them to a custom filter that I'm struggling to build dynamically using a foreach loop :
var mainPredicate = PredicateBuilder.True<Document>();
...
0
votes
2answers
62 views
Dynamic Data - Implementing IQueryable for List<int> Contains()
I have a series of objects that all have a similar property that is a List of the Ids of the groups to which they belong (many parents per child).
I'm having trouble programatically implementing the ...
2
votes
0answers
71 views
Linq Expressions: The binary operator Equal is not defined for the types 'MyEnum' and 'System.Enum'
I convert some of data from a WinGrid to an expression, in order to filter some output to the user.
I have an initial collection (of MyObjectType), I apply some dynamic filters, and I obtain a ...
1
vote
1answer
74 views
How to build an IEnumerable<int>.Contains() Expression?
I'm currently working with ASP Dynamic Data for the first time and I'm trying to build a filter. Our users have a need to locate items in a list based upon whether or not the item is a child of a ...
0
votes
1answer
54 views
ExpressionVisitor.Visit throws 'must be reducible node' error in Data Service Query Visitor
I've got a problem with an implementation of the repository pattern for my WCF Data Service. To sum up, I'm trying to use a repository pattern within a client application that utilizes a plugable ...
0
votes
2answers
46 views
LinqKit versus 'Method cannot be translated into a store expression' exception
I am using LinqKit and I want to write a predicate in which the code has to call a plain boolean method, like this :
var predicate = PredicateBuilder.False<MyEntity>();
var predicate = ...
1
vote
2answers
51 views
My ObjectSet filter doesn't get translated into SQL
I have written this filter to get only documents that match certain periods of time from the database :
The Period entity is straightforward and contains two properties : DateFrom and DateTo.
I need ...
0
votes
0answers
51 views
ExpressionVisitor with Multiple Types
I am using ExpressionVisitor to convert type of Expression<Func<T1,bool>> to Expression<Func<T2,bool>> and it works very well. But i noticed that if expression contains another ...
1
vote
4answers
137 views
Dynamically add new lambda expressions to create a filter
I need to do some filtering on an ObjectSet to obtain the entities I need by doing this :
query = this.ObjectSet.Where(x => x.TypeId == 3); // this is just an example;
Later in the code (and ...
0
votes
1answer
50 views
The LINQ expression node type 'Invoke' is not supported in LINQ to Entities
I have a problem trying to implement a filtering expression to filter a list of entities :
The LINQ expression node type 'Invoke' is not supported in LINQ to
Entities.
This is the code :
...
0
votes
1answer
71 views
How to convert a LambdaExpression to typed Expression<Func<T, T>>
I'm dynamically building linq queries for nHibernate.
Due to dependencies, I wanted to cast/retrieve the typed expression at a later time, but I have been unsuccessfull so far.
This is not working ...
0
votes
1answer
70 views
Cross-Join Syntax in Entity Framework / IQueryable
I'm trying to deepen my education about IQueryable custom providers and expression trees. I'm interested in custom parsing a cross-join (viz. SelectMany), and I'm trying to understand if that is ...
0
votes
2answers
64 views
How to use the value from a property accessor LINQ expression in a Contains LINQ expression?
I currently have a LINQ expression for a property accessor that accesses a property on an object. I now need to build a LINQ expression that will evaluate a predicate to see if the result from the ...
2
votes
2answers
143 views
Dynamic Func<IQueryable<TEntity>, IOrderedQueryable<TEntity>> Expression
I am using patterns mentioned here
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application
And i am ...
1
vote
1answer
109 views
Filtering Database With Dynamic Linq Queries
I have got an MVC application that uses EF 5 Code First for Db operations. Also there is Generic Repository pattern on EF.
Before sending query to DB layer i make some operations such as creating ...
0
votes
0answers
48 views
oData string to LINQ expression serliazer
I have checked out Linq2Rest and I am still not quite sure if it's the right tool for me.
I need something that will serialize a LINQ expression tree to OData and vice versa.
I just want a light ...
2
votes
0answers
82 views
Generic repository split LINQ Expression between contexts
If you have two DbContexts and say EntityOne belongs to DbContextOne and EntityTwo belongs to DbContextTwo.
How can I create a generic repository abstraction that execute EntityOne query and ...
0
votes
1answer
68 views
LINQ to Entities does not recognize the method 'System.String ToBase64String(Byte[])' method,
LINQ to Entities does not recognize the method 'System.String ToBase64String(Byte[])' method, and this method cannot be translated into a store expression.
var activityList = (from item in ...
0
votes
3answers
127 views
A List of Field Names as a String Array - LINQ Expressions
Hello MVC and LINQ Experts,
I have a Model that looks like this:
public class SomeClass : IValidatableObject
{
public string SomeString { get; set; }
public string SomeString2 { get; set; ...
0
votes
2answers
215 views
Parsing a single-statement boolean expression tree
MSDN documentation has a nice example of parsing an expression tree:
// Create an expression tree.
Expression<Func<int, bool>> exprTree = num => num < 5;
// Decompose the ...
0
votes
1answer
171 views
How to write left outer join using MethodCallExpressions?
The code block below answers the question: "How do you perform a left outer join using linq extension methods?"
var qry = Foo.GroupJoin(
Bar,
foo => foo.Foo_Id,
bar => ...
1
vote
0answers
90 views
How to access argument properties when writing custom NHibernate HQL generator
I have the following custom type with a method on it to determine if one span of time overlaps another
public struct DateTimeSpan
{
public DateTime? Start { get; set; }
public DateTime? End { ...
0
votes
1answer
68 views
In join how to segregate the select statement
In my project one table is connected with two or more tables ,To require wanted out put need to join them,Join is not my problem ,after join want to select desired column but from a segregate ...
0
votes
1answer
112 views
Decoupling Entity Framework from my POCO classes
I'm dynamically creating my DbContext by iterating over any entities that inherit from EntityBase and adding them to my Context:
private void AddEntities(DbModelBuilder modelBuilder)
{
...
1
vote
2answers
99 views
Linq Expression - Invalid Arguments
public class EcImageWrapper
{
//etc...
public IQueryable<EcFieldWrapper> ListOfFields
{
get
{
//logic here
return ...
1
vote
1answer
29 views
How do I create an Expression for a Property for reference and value types?
I'm trying to create expressions at runtime to pass to a 3rd party API, which has a signature of
Expression<Func<T, object>>. Below is what I have so far. This works fine for reference ...
5
votes
3answers
101 views
Assigning a lambda expression causes it to not be executed later?
I seem to be having trouble executing a lambda expression that I've previously assigned to a variable. Here's a small C# example program I've put together:
public class Program
{
public static ...
-1
votes
1answer
62 views
Linq Expression on sub child entities for n levels
Need Generic expression for the below Query.
I don't want to use the Dynamic library and Predicate builder.
I am generating expressions dynamically.
var test = entity.User.Where(PUser => ...
0
votes
0answers
70 views
Linq Expressions on Child entities with Many to Many and Many to Single Relation Ship
I Have tables with following relation
User
Course (User 1 to Course Many relation)
Class (Course 1 To Class 1 Relation)
Subject(Subject Many to Class 1 Relation)
I need to filter data using ...
1
vote
1answer
193 views
Passing lambda expressions as parameters using reflection
I have a generic repository method call which is as follows
var result = Repository<MyDbClass>.Get(x => x.MyProperty1 == "Something"
&& (!x.MyProperty2.HasValue || x.MyProperty2 == ...
2
votes
2answers
159 views
Dynamically get class attribute value from type
I'm trying to write a method that finds all types in an assembly with a specific custom attribute. I also need to be able to supply a string value to match on. The caveat is that I would like to be ...
1
vote
2answers
164 views
Pass Method of Unknown Arguments/Return Type as Parameter in C#
There's a similar question here:
Pass Method as Parameter using C#
Which assumes you know the method's arguments and return type. I'd like to do something a bit different. I'm looking to create a ...
0
votes
2answers
419 views
Complicated Linq expression builder
I need to build a configurable query builder that allows the user to compound any number of possible conditions. For example, lets say we have the classic case of Customer, Order, OrderItem and ...
1
vote
0answers
87 views
Accessing to a member property by using linq expression factory methods
For purposes of my project i need to some linq query to an entitie, i am using expression factory methods to build dynamic filter predicate.
Considering this code :
public class mother{
public int ...
0
votes
0answers
51 views
Mapping of Interface is Not Supported, But Linq-Sql Object Already Implements Property
So, I created a DataContext (Linq-Sql) in VS from an existing database. It has a table called Users, thus I have a User object. In particular, I want to focus on the UserID and Username properties.
...
1
vote
2answers
167 views
linq to entities and store expression
I work on project that use some dynamic linq query to an entities.
i have huge amount of case and to avoid code duplication i refactoring to a method.
But using method which isn't in store expression ...
1
vote
1answer
60 views
List is returning null when running the expression
I have a question,...
i'm using following code:
Expression<Func<Administrator, bool>> function = (Administrator a) => (a.User.Username.Equals(username) && ...
3
votes
1answer
84 views
Hello world with Expression Trees
I am trying to get to grips with Expression Trees. I thought I'd start by writing a simple helloWorld function that creates a StringBuilder, appends "Helloworld", and then outputs the string. This is ...
4
votes
2answers
328 views
How to buid Expression<Func<T,bool>> from Expression<Func<T>>
Is there a way to buid Expression<Func<T,bool>> from Expression<Func<T>>?
For example for class
public class MyClass
{
public int Prop1{get;set;}
public int ...
0
votes
1answer
110 views
Dynamic expression parsing in localized environment
So I'm trying to parse a simple arithmetic dynamic expression using System.Linq.Dynamic.
This runs fine when executed in an English environment where the CurrentCulture is English-US (and the decimal ...
3
votes
1answer
167 views
Extending LINQ-based Specification Pattern to implement subsumption
There are a lot of LINQ-based implementations of the Composite Specification Pattern. I have not seen one that used Subsumption.
Are there any such examples that have been documented (blogs, etc.) ...
0
votes
1answer
179 views
Expression.Coalesce in Linq to Entities
Is it possible to use the Expression.Coalesce method (http://msdn.microsoft.com/en-us/library/bb302730.aspx) in Linq to Entities?
How? Any example available?
1
vote
1answer
62 views
C# Expressions - Creating an Expression from another Expression
I am trying to create a reusable method using expressions that looks something like this:
Expression<Func<Order, bool>> CreateExpression(Expression<Func<Order, int>> ...
3
votes
2answers
164 views
Convert between Linq expressions with different return types
I'm having a headache trying to convert the following linq expression.
Expression<Func<T, object>>
to the following linq expression...
Expression<Func<T, U>>
In ...
1
vote
1answer
87 views
NullReferenceException while evaluating dynamically built expression tree [closed]
I'm building this expression tree:
.Lambda
#Lambda1<System.Func`2[RTX.Ulysses.TestFramework.TestCaseDataResult,
System.Collections.Generic.Dictionary`2[System.String,System.Object]]>
...
6
votes
2answers
216 views
How can I use a Predicate<T> in an EF Where() clause?
I'm trying to use predicates in my EF filtering code.
This works:
IQueryable<Customer> filtered = customers.Where(x => x.HasMoney && x.WantsProduct);
But this:
Predicate<T> ...
2
votes
2answers
106 views
How do I determine the type of a class in a function definition?
I'm not really sure how to ask this question, but basically I want to know how to specify a class type generically such that I can type and paste code around.
For example I have the following code:
...
1
vote
1answer
57 views
Making expressions from lambda functions that are not for comparison
I'm currently building a UI that builds up queries and I would like to be able to store other expressions in the form of a lambda function (as it makes it easy to add them with intellisense etc). ...
4
votes
2answers
380 views
EF orderby / thenby combo extension method
I want to be able to apply combo firstby / thenby sorting as follows:
allOrders().sort(s => s.ProductName, s => s.OrderDate)
So using this post as inspiration, I wrote this extension method, ...


