-3
votes
3answers
72 views

Using Contains method within linq's Where clause

I've got a problem with my query. I have two simple classes. Let's say public class A{ public List<B> MyCollection{get; set;} } public class B{ public string Id; } //I want to do something ...
1
vote
1answer
21 views

Sending null variable to methods and compare them with Entity null variables in Linq

I have a method, I'm sending username, password, emails vs. to this method and I'm querying with Linq if there is same record. But when user send a null value it is not same as the linq entities null ...
0
votes
2answers
49 views

Left Join in Entity Framework

I'm trying convert this SQL to Entity Framework LINQ, but don't working. My SQL code: SELECT s.Id, s.OriginalPhotoBlobId, s.PhotoBlobExtension, ISNULL(s.ProductSkuKey, p.[Key]) as ...
1
vote
2answers
56 views

select n records from nth record in linq

I am searching for something like LIMIT(10, 10) <- thats how it works in php Products = Products.Take(10).ToList(); That's not what i want because i want to take 10 records starting at the 10th ...
1
vote
1answer
35 views

LinQ to Entities: Lambda where

I have met a weird situation. When I tried to search items with lambda, searchGuid = new Guid(condition[0]); searchItem = searchItem.Where(x => x.SiteId == searchGuid); searchGuid = new ...
0
votes
1answer
79 views

Linq Anonymous Types with list objects

I am new to LINQ and Entity Framework, so far I have only been able to perform relatively simple data queries. I have just begun querying data and storing the results in a class using code such as: ...
0
votes
3answers
49 views

Left join and filter child element in LINQ

I have the following entities: student ( studentID int, name string ) subject ( .... studentID int, passed bit, date date ) I want a table to show a list of ALL students ...
0
votes
1answer
24 views

Expression of type 'Territory_Manager.HtmlAddressGenerator+Entry' cannot be used for return type 'System.Object'

i realy hope there is someone out there who can help me. I have the following sql statement (just replaced real column values with ''). string sqlstatement = @" SELECT ...
0
votes
1answer
52 views

Mapping Entity Types to a projection

I was reading through a tutorial and they said that you shouldn't ever use an entity type to map to a projection. So something like this isnt allowed (where product is an entity created class): from ...
0
votes
1answer
41 views

LINQ many to many query throws NotSupportedException

I have a many to many relationship in my EntityFramework. I want query all "teilnehmer" which are related to a specific "mannschaft". here is my query var teilnehmerquery = (from teil in ...
1
vote
1answer
80 views

Linq Contains() Not supported

(from a in GetCtx().Application where identifiers.Contains(a.os + ":" + a.osIdentifier) select a.id).ToList(); It is giving me NotSupportedException: ...
1
vote
1answer
376 views

Setting up databind for a listview using c#

I'm fairly new to using entity framework and Linq. I have a ListView in a webform that I want to populate when an "area" is chosen from the dropdownlist at the top of the page. The data will be based ...
0
votes
1answer
108 views

Order by date date with linq and entity framework

I have this code: List<jogo> lista_realizados = tt.jogo.Where(c => c.activo == 1 && c.progresso == 2 && ...
3
votes
3answers
106 views

Does Linq make it more expensive to upgrade my application at a later stage? [closed]

Is using Linq make it more expensive to maintain/upgrade my projects at a later stage? Before I would have used stored procedures which are easy to modify after the code has gone to production. I'm ...
1
vote
1answer
42 views

Querying MVC collection with Array

Im using entity framework 4 and linq/lamda expressions. Im sure its an easy one but im trying to query a collection with an array but get records which contain all the arrays values. basically what ...
0
votes
1answer
141 views

Dynamic Predicate for Selecting Different Columns of an Entity

I have a requirement to showing all or less properties of an entity in the grid based on the page mode user select. For example I have three page modes Minimal (will show 8 properties of an entity in ...
1
vote
3answers
80 views

Entity framework execution time

I've noticed a massive difference in execution time with Entity Framework today. I would like to know why the first statement has so much overhead. For this query i'm retrieving 5500 trenddata values ...
0
votes
2answers
58 views

Entity framework - adding new object

I've entity type called 'Question', when i create new instance of it and add it to entity set 'Questions' (using AddObject()), than call SaveChanges() method on context, all works fine. But when i ...
0
votes
2answers
76 views

LINQ to Entity Select Query Error

using (SmartEntities employeeverificationcontext = new SmartEntities()) { Employee emp = (from c in employeeverificationcontext.EmployeeEntity where c.Employee_ID == ...
0
votes
3answers
85 views

Get Child value in LINQ to Entity

I have LINQ Query which return result in below format -- Parent1 ----Childs ------key - aa ------value - new ----Childs ------key - bb ------value - old -- Parent2 ----Childs ------key - cc ...
0
votes
0answers
32 views

Entity Group By with two different tables

I have this query: select SUM(va.Dias_Gozados)as 'Dias_Disfrutados', vh.TotalVacaciones as 'Dias_Obtenidos', vh.anio Periodo from dbo.tableHi vh inner join dbo.tableHa va on va.CodPeriodo = vh.Anio ...
0
votes
1answer
98 views

Creating Navigation Property without foreign key?

I am trying to create a navigation property for my data model using an existing database. The data has a shared key (like a foreign key) however it is not specified that way in the database. Here is ...
1
vote
0answers
76 views

How to get conditional Include children entity and his related entity

The following code work for me: var query0 = DB.Plan .Include("UserCreate") .Include("UserUpdate") .Include("PlanTemplate") .Select(p => new { plan = p, ...
0
votes
2answers
82 views

Entity Frameworks: How to decrypt a field prior to OrderBy

I have an IQueryable list of Customer entities (EntityFrameworks). I need to do an orderby on this IQueryable list but the issue is that the field that I want to use for ordering is encrypted in the ...
0
votes
2answers
188 views

Creating HiddenFor IEnumerable<String> in View

I have a Property that is an IEnumerable public IEnumerable<string> ChangesOthersResult { get; set; } I need to collect all values from ChangesOthersResult and post from a view back to the ...
1
vote
2answers
69 views

Selecting several objects based on array of IDs

I have an array of ProgramIDs and would like to create a number of Select statements dynamically depending on how many ProgramIds there are. For example: var surveyProgramVar = ...
2
votes
2answers
71 views

Can not bind distinct to drop down control

My application is showing this error below: Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery) is not supported Due to the fact that I am trying to bind my drop down control to ...
3
votes
1answer
1k views

Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery) is not supported

Am coding on visual studio 2012 and using Entity Model as my Data layer. However, my drop down control with the Linq statement tend to throw an unhandled exception when the page tries to load (stated ...
2
votes
2answers
619 views

EntityFunction.TruncateTime not working in my query

I am using Linq to entityframework to query some infomration. I am trying to use entityfunction.truncatetime and it doesnt seem to work as expected. here is my sample query From d In Request Where ...
0
votes
1answer
2k views

LINQ ExecuteQuery

I want to use ExecuteQuery() to get IEnumerable of type Entities.UserLevel. Following code works well. using (CDataContext context = data.GetDataContext()) { string q = "SELECT *FROM UserLevel"; ...
3
votes
1answer
73 views

Linq to Entities how to update record in one database access

I want to update many records in a 10 million record database. Examples here suggest that updates can be done like this: Customer c = (from x in dataBase.Customers where x.Name == ...
1
vote
1answer
126 views

Converting SQL to LINQ to Entity

I am trying to convert the following SQL, not written by myself, into a Linq to Entity query. select u.user_Id, u.forename,u.surname,u.client_code,u.user_name, u.password, u.email, u.gender, ...
0
votes
2answers
51 views

How to filter everything from an Entity using Entity Framework

I'm using VS2010, VB.NET and Entity Framework. I have a textbox in my application where you can search a person by texting his name, his identification number or his last name. And obviously I have a ...
0
votes
1answer
137 views

Linq - Selecting or iterating through all grandchildren with VB.NET

All, I am experimenting with Linq and Entity Framework (athough I am using nHydrate) in VB.NET. Lets say I have 3 tables as follows: So Table1 is the top level grandparent which has a number of ...
0
votes
1answer
345 views

Truncate table in Linq to Entity

I've got an ADO.NET entity data model in my C# project (.NET 3.5) and am using it quite happily. I'd like to be able to truncate the tables in this model. I've searched online and most suggest using ...
1
vote
1answer
210 views

Is IOrderedQueryable.AsEnumerable() still ordered?

context.EntitySet.AsEnumerable().OrderBy() returns an IOrderedEnumerable which is guaranteed to be ordered but it looks like the sorting is done client side. ...
0
votes
1answer
44 views

EF Linq parent and child and back to parent

I'm new to EF and Linq. I have 2 tables, a "News" table and a "Related news" table. Each News item has should show several Related News items. "News" contains a unique Id and details of the news ...
0
votes
2answers
390 views

Linq to Entities Where In Clause Many to Many

I am trying to get a Where In clause to work with linq to entities and have run into problems. My issue is that I have several lists of various entities and I would like to select a set of Game ...
2
votes
2answers
217 views

“Cannot add an entity that already exists” while deleting and recreating record with LINQ

While trying to delete a record in a database and recreate it afterwards, using LINQ, I get the error: Cannot add an entity that already exists. Although the record is deleted. I am initialising my ...
0
votes
1answer
187 views

Tricky left outer join in EF for with criteria on joined table

I am trying to get the a list of Client records along with the most recent ClientNote record for each entity. If a client does not have an associated note, I expect ClientNote to be null for that ...
0
votes
3answers
189 views

Linq to Entity casting

I have a problem with my Linq to Entity query.. Im trying to return a list like so: List<InvoiceReportItem> cancelResults = (List<InvoiceReportItem>)(from cr in model.InvoiceReportItems ...
3
votes
3answers
718 views

C# Entity Framework with linq returns null reference

I have a problem with entity framework in C#. I have 2 entities, User and UserRole. They are bond by relationships User *->1 UserRole Whenever I use this query in a function: User user = ...
0
votes
4answers
349 views

C# Entity LINQ returns wrong and duplicate values

I use the following code : List<vw_GetIMeasurements> Imeasurements = context.vw_GetIMeasurements.Where(f => f.MEMBERID == userID).Distinct().ToList(); This returns a list with 12 Values ...
0
votes
2answers
824 views

LINQ to Entities Select New

public static object ExecuteScalar(string SQL) { try { var A = new EGModel.EGEntity().Connection; var command = ((EntityConnection)(A)).StoreConnection.CreateCommand(); ...
0
votes
1answer
130 views

ExecuteCommand on Entity

protected void Button2_Click(object sender, EventArgs e) { Response.Write(Execute("SELECT NOW()")); } public string Execute(string storedProcedureName) { using (EntityConnection connection = ...
1
vote
1answer
454 views

How can I get data from the Entity Framework if I only know the table name and the column name from which to get the data?

I have a table Parameters which contains columns Id, Name, TableName, ColumnName among others. The database also contains multiple 'series data' tables which have several, possibly hundreds of columns ...
0
votes
1answer
190 views

Entity to Linq Left Join + Grouping + Sum

SQL Query (Execution plan cost = 0.0127553) SELECT SUM(DATEDIFF(second, DTActivate, DTDeActivate)) AS Seconds, AA.ID AS AAID, AA.WorkStation FROM DbLogItems I INNER JOIN DbApplicationArguments ...
0
votes
1answer
415 views

LINQ to Entity VB - Convert Long to String for Contains or Like

Heyho community, I read many entries, but I found no solution for my (special?) problem. Here we go. I have a search String, which is a number and a table column which is of type (bigint, Null). I ...
1
vote
1answer
141 views

Entity framework and linq query construction

I'm wondering if there is a better way to construct my linq query (I am using EF CodeFirst) to access my tables. Right now, it produces the following query: exec sp_executesql N'SELECT ...
1
vote
1answer
340 views

Delete multiple rows with linq.IQueryable?

Delete multiple rows by using the following conditions ، But the error.. Melks = Ent.Tbl_Melk.Where(d => d.Mantaghe == Mantaghe && d.Hoze == Hoze && d.Block == Block ...

1 2 3