Tagged Questions
1
vote
3answers
41 views
Ignoring Empty strings when searching with LINQ-to-Entities
When I run this code, I am checking that before I add a new record, there isn't already an existing one that matches the Bank account number, the VAT number or the Paypal email address...
But, if ...
0
votes
1answer
94 views
Troublesome LINQ query/join
Ok I'm not even sure where to begin on this. I have four main tables.
IPACS_Departments (one to many) -> IPACS_Functions (one to many) -> IPACS_Processes (one to many) -> IPACS_Procedures
I have an ...
0
votes
0answers
12 views
What is the standard load Data in Silver Light by Linq
Did you know that the data is required to show by "Silver Light 5.0" Linq code
dim ds as new domainService
ds.load(ds.GetQueryName)
like this to load it.
I want to know whether the job should be ...
0
votes
0answers
48 views
Converting a Store Procedure into LINQ
In my ASP.NET MVC project, I'm trying to move an old Store Procedure(SP) to my business layer using LINQ. I've got the tables Audit, AuditAction and CorrectiveAction. 1 Audit has N AuditActions and 1 ...
1
vote
3answers
83 views
C# Linq Join not equal
I am trying to create a linq join for a game that will select all the positions a player does not play in using the following query:
var m_player_positions = from pl in tfs.Players
...
0
votes
1answer
25 views
Linq to Entities error
In MVVM, i am getting an entity set from the repository to viewmodel. While trying to access the elements of the entity, it throws an exception:
LINQ to Entities does not recognize the method ...
0
votes
1answer
91 views
how to calculate in select statement
Work on C# linq entity framework 4.
Want to avoid foreach loop from my bellow syntax .Is it capable to calculate foreach loop calculation in select statement?
var result = (from p in MasterDetail
...
0
votes
2answers
55 views
how to implement Linq to Entities IQueriable TakeWhile() functionality
Today while working with LINQ, I leanrnt that TakeWhile() is not supported for LINQ to entities, is there any efficient way to implement such a functionality? The use case I have is as below -
I ...
1
vote
0answers
37 views
linq and parallelism - SQL Server
I'm encountering an issue with LINQ To Entities.
If I run my LINQ query then it use Parallelism (Gather Streams and Reparation Stream) in the execution plan which causes lots of CXPACKET waits.
But ...
0
votes
1answer
25 views
LINQ - loading data from tables with circular references
I have the below tables where the StationAvailableMoves.StationID and StationAvailableMoves.AvailableNextStationID both have relationships on the Station.ID column.
I am using this to control a ...
2
votes
2answers
45 views
LINQ Left Outer Join with conditions
I have the below tables that are coming from my SQL Database with Entity Framework 5.
What I want to do is select all users where tblUserBusiness.BUID equals a passed in value OR where the ...
4
votes
1answer
89 views
OUTER APPLY in .net 4.5 and Entity Framework
After installing the .Net 4.5, there were problems in queries generated by EF. The same query in linq to .Net 4.0 works correctly. I'm using Firebird database and it does not support command OUTER ...
0
votes
2answers
57 views
Is it possible to use Entity Framework without LINQ?
Is it possible to use Entity Framework without LINQ (linq to entities)?
1
vote
1answer
28 views
linq to entities left outer join
select SF.FOLDER_NAME,SF.CREATED_DATE,COUNT(st.FOLDER_ID)
from SURVEY_FOLDER SF with (nolock) left outer join SURVEY_TEMPLATE ST with (nolock)
on SF.FOLDER_ID=ST.FOLDER_ID
group by ...
0
votes
0answers
42 views
This function can only be invoked from LINQ to Entities
Using the following code I get error:
This function can only be invoked from LINQ to Entities.
on this line:
.Where(x => x.e.DateTimeStart > currentDateTime &&
Any idea what I am ...
0
votes
1answer
80 views
LINQ query on List<string> property of class [closed]
I'm having a list Practice property in a class. Now I need to iterate the list and prepare the LINQ query with OR operator. Please help me how to prepare the LINQ query.
The code is:
foreach (string ...
3
votes
2answers
67 views
Get Difference between Following Entities Linq to Entities
Summing up the problem in a single line for clarity as suggested:
I want to find all the things that have different values for some field and are less than a week apart (based on another field)
...
0
votes
1answer
23 views
How to return values from query when joining multiple tables in Linq?
I have a Linq queries that have tables join and couple of tables inner join together. Sometimes I got an error from the query when table is empty. What I trying to do is I am tryting to get a value ...
0
votes
0answers
22 views
How to write multiple outer left join in linq?
I am trying to outer join multiple tables. Here I have pasted my code what I am trying to do.
from o in entities.O
join p in entities.P on o.PID equals p.ID
...
0
votes
0answers
28 views
join anonymous type to Entity in LINQ to Entity
I have been learning LINQ Lamda expressions while using entity framework.
But not able to find out why my code (mentioned below) is not working or is there any other way to achieve it?
tbl_A is an ...
0
votes
1answer
46 views
Linq to Entities - Get list of all unique related entities
asp.net mvc 4, Entity Framework 5, SQL Server 2012 Express, Code First
I have a Place model:
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public ...
0
votes
2answers
55 views
Linq to Entities - OrderBy Tags (many to many relationship)
asp.net mvc 4, Entity Framework 5, SQL Server 2012 Express, Code First
I have a Place model:
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public ...
0
votes
1answer
29 views
How to Optimize Performance for a Full Table Update
I am writing a fairly large service centered around Stanford's Folding@Home project. This portion of the project is a WCF service hosted inside of a Windows Service. With proper database indices and ...
2
votes
1answer
52 views
EF dynamic query with enum
I'm trying to build a dynamic query whit a condition on an emum
enumField & enumValue == enumValue
for this, during the analysis the following is called
Expression ...
0
votes
2answers
52 views
Filtering a collection deep in an object graph
Here is what I am trying to do:
My ASP.NET Web API accepts a chart "id", a "startTimestamp", and an "endTimestamp" from the client. I need the Web API to select only the "MeasureData" (see the ...
1
vote
2answers
31 views
Linq Expression that compare Lambda result with a constant
I have a calculated property
public decimal Avaibility
{
get{ return l => l.Start - l.Uses.Sum(u => u.Amount);}
}
so i can't include this property in any predicate for linq to entitie ...
2
votes
3answers
61 views
Linq to Entities - insert all objects with TagID in string[] into an ICollection<Tag>
Tag object
public virtual int TagID { get; set; }
public virtual string Name { get; set; }
public virtual string NamePlural { get; set; }
I have an ICollection<Tag> - and a string[] ...
0
votes
2answers
64 views
How to convert temp table with case statement SQL to Linq?
I'm very newbie in Linq and don't know how to solve some problems even very easy in MS SQL query.
Select e.EmployeeID
, e.EmployeeName
, e.Division
, e.DepartmentCode
, e.DesignationGrpCode
Into ...
0
votes
1answer
41 views
The principal end of this association must be explicitly configured using either the relationship fluent API or data annotations
I have two SQL tables:
class DiaryItem
{
private System.Guid Id;
private string Name;
}
class DiaryActivityItem
{
private System.Guid Id;
...
0
votes
3answers
47 views
How to simulate .Substring() method in Linq-to-Entities
I have this query:
Course c = db.Courses.Find(id);
var pics = from pic in db.PersonnelInCourses
where pic.PersonnelID == User.Identity.Name &&
pic.Course.TitleID == c.TitleID ...
0
votes
1answer
52 views
How to use linq to entities queries or Lists in linq to sql queries
I have a generic EF repository and need to get items from database using nested where statements.
var categoryGroups = repository.Categories.Where(a => a.Vehicles.Where(v =>
...
1
vote
1answer
25 views
LINQ to EF Cross Join issue
I am using Entity Framework 5.
Below is my SQL Query which runs successfully:
Select person.pk
from person, job
Where
person.jobId= job.pk
and
job.Description = 'CEO'
I have changed the table ...
4
votes
5answers
94 views
Linq query runs in a fraction of a second, but .ToList() takes 3.5 seconds
I'm running a Linq query that returns about 25 records, each with 10 numeric columns. According to my code profiler, the query itself is taking a fraction of a second - but the call to .ToList() is ...
1
vote
1answer
67 views
Using DateTime.Add(TimeSpan) with LINQ
I have to run a query like the one bellow. It is actually more complex, but here is the part that matters:
var results =
from b in _context.Bookings
where b.ScheduleDate.Add(b.StartTime) ...
0
votes
1answer
39 views
Query is not showing proper result
the Query join two tables on ProductID.The tables name are "product" and "SpecialOfferProduct". What i want is to join tables on ProductID where the Id is same select Name from Product. I did in this ...
9
votes
7answers
196 views
Efficient LINQ to Entities query
I have an entity collection of Readings.
Each Reading is linked to an entity called Meter.
(And each Meter holds multiple readings).
each Reading holds a field for meter id (int) and a field for time.
...
0
votes
1answer
37 views
Multiple Databases in ASP.NET MVC
I'm very first experience in ASP.NET MVC and after I read through a few articles I decided I try my new project with MVC.
And I used ADO.net entity data model and I created Create/ Delete/ Details/ ...
0
votes
1answer
39 views
Result consisted of more than one row when executing linq query against mysql database?
When I run the following query in VS2008 with EF 3.5, I get the error:
Result consisted of more than one row
var drivers = _context.Persons
.Where(x => x.client == ...
0
votes
1answer
69 views
Convert SQL with groupBy sub query to LINQ query
Please could somebody assist me in an example of the following SQL into a LINQ query in C#, I am using .NET 4.0.
SELECT x.*
FROM [eBookAddict].[dbo].[UrlRecord] x
JOIN ...
0
votes
1answer
79 views
Unable to convert MySQL date/time value to System.DateTime with LINQ Where?
I have the statement:
var persons = _context.Persons.AsExpandable()
.Where(predicate).ToList();
When I run the above, it gives me the error Unable to convert ...
-2
votes
4answers
85 views
Fetch distinct object from a collection using GroupBy on a single column in LINQ to Objects/SQL/Entity
I have a Database table Country with example data as follows:
CountryId CountryName Year
1 UK 2001
2 UK 2003
3 ...
0
votes
1answer
68 views
left join linq is not working
i have this linq query
var x = (from d in detalle
from n in nlj.DefaultIfEmpty()
join nd in nuevodetalle
on new { d.ope_idsku ,d.ope_tipo } equals new {nd.ope_idsku ,nd.ope_tipo }into nlj
from n in ...
0
votes
1answer
48 views
Only primitive types are supported in this context
I have the following extract of code and I get the above error. This is a really simple query and of course works perfectly in SQL. What am I missing?
public IEnumerable<PAYSHIST> ...
0
votes
1answer
47 views
InsertAllOnSubmit in LinqToEntities
What's the Method to InsertAllonSubmit in LinqToEntities.
I am getting a result using where condition from one table.
Now I need to Insert all records at a time into another table with out using ...
0
votes
1answer
29 views
Generating lambda expression - Type conversion Error
I have a generic method that filters a list of entities, filtering is done by generating lambda expressions:
protected object initFilters<TEntity>(string targetEntity, List<SearchItem> ...
1
vote
1answer
54 views
Entity framwork mutiple object relation
I have a table with 2 foreignkeys to the same parent table, Edge.StartStationId and Edge.EndStationId.
I am trying to map theese to objets in entity framework, but can't find a workaround which seems ...
0
votes
2answers
45 views
Convert SQL to LINQ to Entities WHERE IN clause
How can I convert this sql statetment to LINQ to Entities?
SQL Statement:
Select * from Departments where DepartmentID in (Select DepartmentID from Employees where FirstName like '%FirstName%' or ...
0
votes
3answers
50 views
Combining 2 linq queries - group and join
I have 2 separate tables in my Db for Customers and their related Ethnicity. The customers table holds foreign key Id for the ethnicity. I would like to create a Linq query that shows the total of ...
4
votes
1answer
124 views
What's the better way to write this linq query?
SQL:
SELECT node.CategoryId,
node.CategoryName,
node.Description,
node.Lft, node.Rgt,
node.ShowOnMenu,
(COUNT(parent.CategoryName) - 1) AS Level,
(CASE WHEN node.Lft = ...
0
votes
1answer
29 views
Linq to Entity - Inserting a record
I am new to Linq to Entity (Infact I am new to Linq) and I am struggling to insert a row.
Following a number of tutorials (None of which seem to agree with each other or are very detailed) I managed ...





