Tagged Questions
11
votes
3answers
2k views
Entity Framework & LINQ To SQL - Conflict of interest?
I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities ...
6
votes
6answers
6k views
Linq to Entities vs ESQL
When using the Entity Framework, does ESQL perform better than Linq to Entities?
I'd prefer to use Linq to Entities (mainly because of the strong-type checking), but some of my other team members ...
4
votes
1answer
146 views
Converting ESQL to LINQ to Entities. Sort by related entities
I am using EF + RIA and unfortunately meet some problems with sorting by related entities.
For such purpose there is ESQL query that I implemented (found only this solution):
var queryESQL = ...
3
votes
1answer
387 views
ESQL in Entity Framework
Is there any good and, if possible, exhaustive documentation about ESQL in entity framework ?
I'm trying to make a select of an entity object with modification of a property of this one by a method; ...
3
votes
3answers
461 views
In what situations, should I use Entity SQL?
I was wondering whether there are situation that's more advisable to use ESQL?
Generally, I find ESQL a PIA (specially with all the special cases where you need to fully qualify an entity type) & ...
2
votes
1answer
59 views
Fetch only key value from EF association
I've set up a many-to-many association between two tables based on a third table that just holds a pair of key values. Now I'd like to do a query that groups the right tables key values by the lefts ...
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
2answers
634 views
Entity Sql for a Many to Many relationship
Consider two tables Bill and Product with a many to many relationship. How do you get all the bills for a particular product using Entity Sql?
1
vote
1answer
191 views
How Select From Parent Based on Child Property in EntityFramework and ESQL
I have a parent/child table in Entity Framework and I need to select some row from parent based on child primary key.
I write these code:
List<int> s = (from all in DB.TbProfiles
...
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
295 views
Is writing eSQL database independent or not?
Using EF we can use LINQ to read data which is rather simple (especially using fluent calls), but we have less control unless we write eSQL on our own.
Is writing eSQL actually data store ...
1
vote
4answers
860 views
Entity framework (3.5): How to translate a certain LINQ query to eSQL?
I have the following LINQ query that I need to translate to Entity SQL /eSQL):
return (ObjectQuery<User>) from user in Users
where !user.Roles.Any(r => r.AnIntegerProperty < 0)
...
0
votes
0answers
10 views
Searching properties of a navigation property with Entity SQL
I am doing some queries using Entity SQL. I can't use LINQ as the queries are generated at run time.
Consider the following tables/classes
class Note
{
string Text { get; set; }
string ...
0
votes
1answer
29 views
ObjectQuery as a parameter in ESQL
Assume I have 2 entities: Ent and SubEnt with N:1 relationship. So, there are navigation properties SubEnt.Ents and Ent.SubEnt. Also, I have some ObjectQuery defined:
ObjectQuery<SubEnt> se;
...
0
votes
2answers
93 views
cast with linqToEntity(Esql)
my code :
public List<Book> GetBook(string NameField, object Value)
{
var queryESQL = @"select VALUE Book from Book
where Cast(Book." + NameField + " as string) ...
0
votes
1answer
112 views
Entity sql concatenation
Hy!
I have a select in entity sql that returns simple strings, and i should concatenate to a string.
select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y
For example it ...
0
votes
1answer
188 views
Can I use Entity SQL to query an IQueryable<T>?
I know I can use ESQL to query an ObjectSet of T but can I use it to query an arbitrary IQueryable of T?
EDIT
Example:
var originalQuery = from t in Transactions where t.Date < DateTime.Now ...
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
1answer
32 views
How do BeginsWith operations work in ESQL?
How do you perform a BeginWith SQL operation in ESQL syntax?
0
votes
1answer
297 views
Limiting EF result set permanently by overriding ObjectQuery ESQL
Does anyone have any idea how to limit result set of EntityFramework permanently? I'm speakink about something like this Conditional Mapping. This is exacly what I want to achieve with one exception: ...
0
votes
2answers
192 views
SQL from EntityDataSource
Is there an easy way to see SQL statements generated by EntityDataSource?
SQL Server profiling/tracing is not an option here.
Thank You
0
votes
1answer
444 views
Comparing DateTime in Entity Framework with an Sql Server Compact database
Why this code throws a System.NotSupportedException telling that The specified method 'int? DateDiff(string, DateTime?, DateTime?)' on the type 'System.Data.Objects.SqlClient.SqlFunctions' cannot be ...
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
83 views
Searching free accomodation
I need help with a query?
I have 2 tables reservations & units among others.
Table reservations has columns ResId,rfrom(datetime),rto(datetime),status(int),UnitID(foreign key).
Status 2 means its ...
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
...