Tagged Questions
1
vote
0answers
25 views
“Cannot be translated into a LINQ to Entities …”, but it should
This sould be able to be translated into a Linq to entities store expression, but it throws that it cant.
for (int day = 1; day <= 7; day = day + 1)
pairs.Add("[" + day + ", " + ...
0
votes
1answer
24 views
How use LINQ to find entities where a list of sub entities contains another list
I have a complex object which contains 2 lists of more complex objects.
The first object is as follows:
public object1 {
public string Name { get; set; }
public virtual ...
0
votes
0answers
76 views
update element of list of Complex object with linq
Hi everybody and thanks in advance for solution
I've these objects
List<AccessModuleInfo> listOfAccessModuleInfo = new List<AccessModuleInfo>();
public class AccessModuleInfo
...
4
votes
3answers
273 views
Linq static method in SELECT statement
I'm working with EF and have some queries. Here is my code
IEnumerable<Customer> customers = from c in context.Customers
select new Customer
{
ID = c.ID,
Name = c.Name,
...
2
votes
2answers
73 views
How to join two entities
How to join two entities
my entity name customer
Public Class Customer
{
Name string {get;set;}
Address string {get;set;}
}
I got result
Customer customer = this.customerService.GetAll();
...
0
votes
2answers
60 views
select master with details fileds in linq
I want to select some of the Product's information after Category's infromation using linq to objects.
var test = Context.Categories.Select(t => new { t.CategoryID, t.CategoryName });
How can i ...
3
votes
2answers
266 views
Nesting Linq-to-Objects query within Linq-to-Entities query –what is happening under the covers?
var numbers = new int[] { 1, 2, 3, 4, 5 };
var contacts = from c in context.Contacts
where c.ContactID == numbers.Max() | c.ContactID == ...
1
vote
1answer
66 views
Some confusion with Linq-to-Objects query operating on results of Linq-to-Entities query
Linq to objects expression returns an object, which when enumerated yields elements from the sequence. Normally, deferred LINQ-to-Object methods act as a pipeline, thus each element of the sequence ...
1
vote
2answers
153 views
How can the result of this LINQ query be of type IQueryable<> and not of type IEnumerable<>?
I understand that next query throws an exception since IQueryable<> provider doesn't support Enumerable.TakeWhile extension method.
IQueryable<Contact> search = ...
1
vote
3answers
848 views
How to use AND operator in LINQ Join
I have following SQL Query
SELECT * FROM KDMS_dynamic vd
INNER JOIN KDMS_definition tblKDMS ON tblKDMS.SystemID=vd.SystemID
LEFT OUTER JOIN KDMS_typeid tblKDMSType ON ...
2
votes
1answer
80 views
Will you get the benefits of IQueryable if you use entity projections?
Lets say I have a method like this:
IQueryable<MyFlatObject> GetMyFlatObjects()
{
using (var context = new MyEntities())
{
return context.MyEntities.Select(x => new ...
1
vote
3answers
128 views
Replace letter ي with letter ی in linq?
i want Replace بازي to بازی
var List = (from darkhast in Tbl_Darkhast.Where(d => d.Address.Replace("ی","ي").StartsWith( Address.Replace("ی","ي") ) )
select new
{
...
0
votes
2answers
284 views
Linq Get next n records
I have a grid with pager, I am trying to get the next 25 records starting with a start index.
for example for the first time it I return 25 records, when I change to next I want to pick the next 25 ...
0
votes
1answer
252 views
LINQ: How to search 2 list ( Two list: Entity List and Array ) combined?
Suppose I am an entity of Member and a list of names that I do not want to include.
var excludeNames = new [] { "A","B","C","D"};
var members = db.Members.Except(excludeNames);
or
var ...
0
votes
1answer
2k views
How to bind text box to an entity Framework Entity (Entity Framework 4 using windows Forms and C#)
Using Northwind database as Entity data model,
on my Windows Form I have 1 datagridview and 1 textBox both bound to Orders entity, textBox bound to OrderID field.
When running the project I get ...
2
votes
2answers
460 views
fill a list of objects with linq
I have a table which I created , and I inserted it to
var CurrTable;
The table looks like this:
SaleID | ProductID | ProductName
1 | 1 | Book
1 | 2 | Notebook
2 ...
2
votes
1answer
48 views
Can new type classes be created in Linq-to-Objects?
To create and assign classes on the fly from other objects I usually use LINQ.
Suppose I have a IQueryable<ProductForCart> object fetched from my Database and, for some reason, I need to ...
3
votes
2answers
690 views
LINQ - Select all in parent-child heirarchy
I was wondering if there is a neat way do to this, that DOESN'T use any kind of while loop or similar, preferably that would run against Linq to Entities as a single SQL round-trip, and also against ...
3
votes
1answer
253 views
Used 'new' operator in LINQ to SQL query, but same instance is referenced in every result
Can anyone explain the behavior I am seeing in the minimal code example below? It seems that for a given field or property, the same two instances of the Entry class are being reused in each ...
1
vote
1answer
430 views
Compiled queries in Linq to Devart Entity Framework
For Compiled Queries, In LINQ to Object Entity FrameWork basically it allows the queries to compile at one time and then it can be re-used without compiling another time.
For Example:
using ...
0
votes
1answer
350 views
Linq-to-entities date value in database is string
Personally, I know just enough Linq to be dangerous.
The task at hand is; I need to query the DAL and return a list of objects based on a date range. Sounds simple enough, however the date is a ...
1
vote
1answer
1k views
LINQ Entity Framework - COUNT AND QUERY
edmx file: OrderData:
ORDERID
SHIPMENT
DRIVER_ID
RECEIVE_NAME
we need to build a table and print for each DRIVER_ID
first column:DRIVER_ID
second column: how many rows with this DRIVER_ID
third ...
0
votes
1answer
855 views
Why does EF throw “NotSupportedException: The method 'First' can only be used as a final query operation”
int[] ids1 = { 1, 2, 3 };
int[] ids2 = { 1, 5, 6 };
var result = from a in ids1
where a == ids2.First()
select a;
foreach (var item in result) ; //ok
var employees = ...
2
votes
2answers
137 views
LINQ query records based on date array
I have a table (I am using Entity Model) and filtered that table using LINQ query which is working fine.
Now I want to filter the records on the basis of array of dates. I am not able to implement IN ...
0
votes
2answers
236 views
Linq to AD Query not working
user.fld_usr_name is a string with the value random name
user is an object that is given as a parameter
ByVal user As GUser
this is the linq query that doesn't work
Dim result = (From usr In ...
8
votes
5answers
3k views
linq to entities vs linq to objects - are they the same?
I usually use the term entity to represent a business data object and in my mind, the linq to entities and linq to objects were the same. Is that not correct?
1
vote
1answer
707 views
Entity Framework 4 Unit of Work / Repository WITHOUT .Query() Lambda
We've seen some very useful methods of implementing EF4 Repository and Unit of Work pattern (Reference 1, Reference 2)
All the examples I see use methods requiring the use of LINQ Expression Syntax, ...
0
votes
5answers
569 views
LINQ List gives null exception in where Clause
var q = from p in query
where
((criterias.birthday == p.BirthDay|| criterias.birthday == null))
&& ((criterias.marriageDate == null || ...
0
votes
1answer
102 views
How to get the values of a column in dataset having “//” in the column name ,using LinQ?
I have a dataset oDsData.In this i have a column named SL_NO\\W.
i used the following code
var f = oDsData.AsEnumerable();
var x = from c in f
select c.Field<int>("[SL_NO\\W]").ToString()
...
1
vote
1answer
4k views
Joining three tables and using a left outer join
I have three tables. Two of them join equally but one will need to join with a left. I'm finding a lot of code to do this in linq but between two tables only.
Here is the SQL code that I'm trying ...
-1
votes
2answers
208 views
How can i use LINQ with property
Hi I have a array list if type class "DtContract".
ArrayList listOfContracts_;
foreach (DTContract contract in listOfContracts_)
{
if (contract.Engine != DTIsland.EngineType.AMADEUS && ...
3
votes
1answer
167 views
When to use JOIN and when not to in LINQ to entities
I am new to Linq and I have seen that if there are multiple entities, some use the multiple FROM syntax like this:
from h in db.Hubs
from ch in h.CityHubs where ch.Cities.CityID == 1
select
and ...
1
vote
3answers
105 views
without for loop how can is show var type these value in TextBox
I have a scenario where i have a
var testVar= list1.Intersect(list2);
testVar contains about 400 values.
Now i have to show all the value in the text box.
Like:
Textbox1.text = testVar...
So, ...
1
vote
2answers
171 views
Performace issue using Foreach in LINQ
I am using an IList<Employee> where i get the records more then 5000 by using linq which could be better? empdetailsList has 5000
Example :
foreach(Employee emp in empdetailsList)
{
...
0
votes
2answers
111 views
How do I do NOT in LINQ?
For a SQL query like this, how do I translate this to linq?
SELECT *
FROM table1 t
WHERE NOT (t.col1 = 1 AND t.col2 = 2)
1
vote
3answers
2k views
Linq dynamic queries for user search screens
I have a database that has a user search screen that is "dynamic" in that I can add additional search criteria on the fly based on what columns are available in the particular view the search is based ...
6
votes
3answers
3k views
How to convert Linq.ParallelQuery to Linq.IQueryable
var transactions = from t in context.Transactions
group t.Create_Date_Time by t.Participation_Id
into t1
...
10
votes
4answers
905 views
linq-to-entities / linq-to-sql: switching from server (queryable) to client (enumerable) in the middle of a query comprehension?
NOTE: this is likely simple and my google-fu is just weak. :(
In many cases, I want to do some filtering (and sometimes projection) on the server side and then switch to client-side for operations ...
1
vote
2answers
386 views
Very complex linq
I'm having trouble rewriteing a complex sql query as linq.
-- gets the SpecificationAttributeOptionIDs that are in the FilteredSpecs list, but don't match
SELECT * FROM #FilteredSpecs [fs]
...
0
votes
2answers
440 views
complex orderby that links to another table
I have the following query to start with:
var query = from p in db.Products
from pc in p.NpProductCategories
where pc.CategoryId == categoryId
...
1
vote
1answer
199 views
Linq, what is difference in returning data in var, list, IEnumarable and IQueryable?
I am new to Linq please guide me on some basic things.
In read some articles on Linq. Some authers fill data in var from Linq query, some fills list of custom type objects and some fills data in ...
3
votes
3answers
2k views
IQueryable Lambda Projection Syntax
I have an IQueryable whose Entity Framework 4 objects I would like to project to their DTO equivalents. One such object 'Person' is an EF4 class, and the corresponding POCO PersonP is a class I've ...
0
votes
1answer
331 views
LINQ Find non overlapping audit records by date
I have an audit table which stores audit rows for a long running process at an individual task level in SQL Server.
auditId int,
TaskName nvarchar(255),
StartTime datetime,
EndTime (datetime, ...
2
votes
1answer
110 views
Enhance this LINQ query for readability and performance?
I'm not the greatest with LINQ, but I'm trying to retrieve all the ModuleAvailabilities where the academicYear is the current year.
Are there any improvements to be made here?
...
0
votes
1answer
310 views
Left/Right/Inner joins using C# and LINQ
I am trying to figure out how to do a series of queries to get the updates, deletes and inserts segregated into their own calls. I have 2 tables, one in each of 2 databases. One is a Read Only feeds ...
1
vote
1answer
1k views
Link To SQL Join Statement with or Clause
I have to following SQL Statement that I want to conver to LINQ
Select
F.FooName
B.BarName
From Foo F
Inner Join Bar B on B.BarName = F.FooName OR B.BarName + 'hello' = F.FooName
I have seen ...
3
votes
2answers
374 views
How to do a “join” in a LINQ query against the Entity Framework
I have the following table structure which has been imported into the Entity Framework. I need to write a LINQ query where I select the entities of Table1, where a field in Table2 is equal to true, ...
2
votes
1answer
4k views
How to use If statement during select from Linq to Datasets
I have this LINQ statement
Dim Demo = From d In DBDataTable.AsEnumerable _
Select id = d.Field(Of Integer)("id"), _
Colun = d.Field(Of Object) (_column2), _
...
1
vote
1answer
450 views
Can I do this with an IQueryable<T>?
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 impliment this ...
7
votes
2answers
16k views
How to create a dynamic Linq Join extension method
There was a library of dynamic Linq extensions methods released as a sample with VS2008. I'd like to extend it with a Join method. The code below fails with a parameter miss match exception at run ...
