Tagged Questions
The entity-sql tag has no wiki summary.
3
votes
1answer
1k views
Entity Framework 4.0 Entity SQL passing null ObjectParameter parameters
I have an Entity SQL query:
SELECT VALUE t FROM MyEntities AS t
WHERE t.Name = @p OR (@p IS NULL AND t.Name IS NULL)
I can execute the query as follows:
var results = ...
2
votes
1answer
606 views
Entity Framework 4.0: Entity SQL CAST Operation Not Working
I'm trying to make a query where I cast a text column, which contains an integer as text, to an Int32. Here's the query:
SELECT VALUE t FROM MyEntities AS t WHERE CAST(t.TextColumn AS Edm.Int32) > ...
2
votes
4answers
135 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())
{
...
2
votes
1answer
61 views
Which kinds of queries is better for querying against conceptual model in Entity Framework?
There are 3 way for querying against conceptual model in EF :
LINQ to Entity
Entity SQL
Query Builder Methods
Which one is better for which situation? Is there any performance issues for these 3 ...
1
vote
1answer
20 views
Entity SQL IN/Multiset issue
I am using the following query in entity sql
Select n.Name as NodeNameN from Nodes as n where n.Name IN MultiSet (@Test)
The value is substitued at runtime using the below code :
var reader = ...
1
vote
0answers
30 views
Entity Framework Can't Load Related Entity
Ever since I started using POCO in my projects, I've been having problem querying data that references other entity on the query. The annoying part of it is that trying the same query on LINQPad works ...
1
vote
3answers
221 views
Problem with Entity SQL
I am learning Entity Framework 4 from book.
And I try to make some Query with Entity SQL like this :
using (var context = new BAEntities())
{
string str = "SELECT VALUE c " +
...
1
vote
1answer
331 views
Dynamic ObjectQuery<T> against EF 4 using parsed Entity SQL
I am trying to create a completely dynamic way to query entity framework using entity sql, where the type T in ObjectQuery (the table name, or entity name) is not known at compile time, and is passed ...
1
vote
2answers
407 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 ...
1
vote
1answer
258 views
Compiled Entity SQL query and OrderBy
I'm trying to come up with an compiled query using Entity SQL and I'm getting this error on ToList() line:
LINQ to Entities does not recognize the method ...
1
vote
2answers
4k views
How to implement EntityDataSource Where IN entity sql clause
I want to pass a number of values into a parameter of the EntityDataSource, e.g.:
Where="it.ORDER_ID IN {@OrderIdList}" (this is a property on the EntityDataSource)
<WhereParameters>
...
1
vote
1answer
144 views
How to map EntitySql function to a differently named function in the store?
The question is: Given a database backend that understands LeftStr and RightStr: where, in a custom ADO.NET provider implementation, would I establish a mapping to the immutable EDM canonical ...
0
votes
0answers
29 views
EntitySQL: join rows from result set to single delimited string
Is there a way to join a result-set rows to single string in eSQL?
There are many options to do this in T-SQL, but how about eSQL?
For example, I have select result as:
ModelId Name
1 HP1210
2 ...
0
votes
0answers
40 views
IQueryable<T> select with entity sql query
I need help.
I have a list of types that gets special method of that list is done must advanced search.
My idea is that in this dataset do where search, the condition was entity sql string, which ...
0
votes
0answers
84 views
Can I filter an EntityDataSource by child collection?
I'm trying to make a GridView display items that are selected by the current user.
I can think of other ways to acomplish this, so I'm basically asking if it's easy to make this work.
<%@ ...
0
votes
1answer
83 views
Can someone explain what REF, CREATEREF, DEREF, KEY in Entity SQL do?
I can't find good documentation on these operators. Can someone provide some examples of use and explain what they do?
0
votes
2answers
69 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
1answer
134 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 ...
0
votes
0answers
110 views
equalation of include in entity-framework for entity-sql
Hi
What is the equalation "include" in entity-framework for entity-sql like the folowing structure :
A->B->C->D
A=Depth 0 ; B=Depth 1 ; C=Depth 2; D=Depth 3
A.Inch("B").include("c").include("d")
0
votes
2answers
67 views
Entity SQL query with hierarchal relation
I want to use Entity SQL to query the elements of some subtype in my Entity Model. For instance...
SELECT VALUE c FROM Persons AS c
WHERE c is of (Customer)
no problem meanwhile, but if I try 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
...