Tagged Questions

2
votes
1answer
94 views

Linq PredicateBuilder

public static IQueryable<SearchProfile> FilterData(string Filter, Repository<SearchProfileContext> dc) { IQueryable<SearchProfile> data = null; var predicate = ...
1
vote
1answer
1k views

Writing SQL function with XQuery Parameters

Following on from one of the answers in this thread; http://stackoverflow.com/questions/214060/using-xquery-in-linq-to-sql/214435#214435 I'm trying to create a sql table function that will take ...
0
votes
0answers
41 views

Is there a way to call built-in sql function in Linq to Entities

I want to know if there is a way to call built-in sql functions in LINQ to Entities? Such as 'CAST', 'ISNULL'. I have searched on the internet and I know how to call user-defined functions in LINQ to ...