I downloaded the DynamicLinq library through the nuget package. I used it as below
db.ReservationSet.Where("blbalbabla",1,2)
But I get below exceptions.
Error 38 The call is ambiguous between the following methods or properties: "System.Linq.Dynamic.DynamicQueryable.Where (System.Linq.IQueryable, string, params object []) 'and" System.Linq.Dynamic.DynamicQueryable.Where (System.Linq .IQueryable, string, params object []) 'F: \ Projects \ IEKeysNew \ IEKEYS \ Controllers \ ReportController.cs 145 22 IEKEYS
Here is a sign of both methods.
public static IQueryable<T> Where<T>(this IQueryable<T> source, string predicate, params object[] values); public static IQueryable Where(this IQueryable source, string predicate, params object[] values);
I could not find something to get rid of this compile-time exception.
source share