0
votes
1answer
14 views
Need help with designing a query in ELinq
This is my query:
Dim vendorId = 1, categoryId = 1
Dim styles = From style In My.Context.Styles.Include("Vendor") _
Where style.Vendor.VendorId = vendorId _
AndAlso (From si …
0
votes
1answer
26 views
How does LLBLGen Compare to Nhibernate and Linq to Entities Performance wise
I am currently using Linq to entities. i am hearing from colleagues that they are having performance issues with L2E and had to implement caching in several places. I have researched some ORMs but …
1
vote
1answer
64 views
Is this an Efficient Query — Linq to Entities
I am setting up a question and answer site. The database is setup to where the questions and answers are in the same table. The questions have a parentid of null and answers and a value in the …
0
votes
1answer
26 views
What is equivalent GetPropValue<T> method in L2E ?
Hi people.
I´m have a problem using EF for my data model.
I have this code in my method:
listaPaginada = sortOrder.Equals("asc") ?
…
1
vote
1answer
47 views
Can I do this with an IQueryable<T> ?
Hi folks,
is it possible to add an extension method to IQueryable<T> and then, for my Linq2Sql or EF or NHibernate or LinqToObjects, define it's functionality / how each repository will …
0
votes
1answer
22 views
Best way to check if object exists?
Hi,
What is the best way to check if an object exists in the database from a performance point of view?
Regards
Freddy
2
votes
2answers
57 views
Multi-Database Transactional System & ASP.NET MVC
So I have a challenge to build a site that people online can use to interact with organizations.: http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application
One of the requirements …
2
votes
4answers
63 views
Linq, Where Extension Method, Lambda Expressions, and Bool’s
Greetings, I am having some issues with using a bool operation within a Where clause extension method of an IQueryable object obtained using Linq to Entities. The first example is showing what does …
0
votes
1answer
13 views
Linq Entity Inheritance makes BIG SQL Sentences
We are developing an application with a base entity with more than 10 childs (which inherited from it).
When we make any request with Linq to the base entity we get a SQL statement with a "UNION ALL" …
0
votes
0answers
12 views
LINQ to Entities, replace a .Select() with a .GroupJoin()
Hi.
I'm trying to construct an object-graph consisting of Data Transfer Objects (DTO) generated from a LINQ query. But I am having an issue with only selecting the rows from the DB that are relevant.
…
1
vote
2answers
31 views
Entity Framework Many-To-Many with additional field on Joining Table
I have an entity context that includes three tables (see diagram here). The first is a table that contain products, the second contains recipes. The joining table has fields for ID's in both the …
1
vote
3answers
52 views
LINQ Training: Native SQL Queries to LINQ
Can anyone point out some good LINQ training resources. Mostly interested in getting some developers that are very skilled with SQL up to speed using Lambda and LINQ queries. They are struggling with …
1
vote
2answers
46 views
asp.net mvc and linq to entities: how to include text value from IEnumerable<SelectListItem>
I have a table with a constraint on one field - it can be 1, 2 or 3. (The correct solution to this is probably to create a lookup table for this, but for now I'm wondering if it's possible to do this …
1
vote
2answers
30 views
SQL Server Query Execution Plan Rebuild
I have this query that gets executed though Linq to Entities. First time the query runs it generates the execution plan which takes just under 2 minutes. After the plan is cached the query takes 1 or …
0
votes
2answers
27 views
Linq-to-Entities: Format Date in select query expression
I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.
nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeValue >= …
