Tagged Questions

2
votes
4answers
150 views

Dynamically sorting and filtering projected Entity SQL results

I have the following query which I want to sort or filter using projected class names: List<CompanyInfo> list = new List<CompanyInfo>(); using (var db = new DbContext()) { ...
1
vote
1answer
145 views

How to String Concatenation in Entity SQL?

A very quick question SQL: SELECT VALUE ROW( ('#' + CAST(pack.PackageID as Edm.String)) as PackageID) From ProductPackage It show error, edm.String not found, I also try String or Varchar,still ...
1
vote
2answers
449 views

Entity SQL Datetime Syntax error

Anyone know What is wrong with my syntax here? I am making dynamic eSQL Queries and running into an error when trying to make where condition for DateTime data type. This is the error: The query ...
0
votes
0answers
27 views

Entity SQL Format Date

When I convert a Date to a string in ESQL, can I choose what format the string should be in? Here's my ESQL: data.select("cast(it.DateCreated AS System.String)") Which produces results like: Jun ...
0
votes
2answers
78 views

How to return a Bool from a Where Filter using Entity Framework and Esql

I use c# and ef4. I have a Model with an Entity with two proprieties int Id and string Title. I need to write an ESQL query that is able to return bool TRUE if Id and Title are present in the ...
0
votes
2answers
2k views

Comparing Date / DateTime ine Entity SQL Where clause

I have a method which accepts an ObjectQuery and adds Where clauses to it depending on whether it receives values for various filter parameters. The method has to return an ObjectQuery. How can i do a ...
0
votes
2answers
2k views

Comparing dates in Entity SQL

What is the correct eSQL syntax to compare dates? The equivalent LINQ-to-Entities expression would look something like this: var lastYearsShipments = from p in MyDataServiceContext.Products ...