2
votes
1answer
28 views

Grouping/Subquery in LINQ to Entities with related ungrouped columns

I have this table in DB: ID | Timestamp | Score ------|---------------------|------------------- 1 | 2013-01-01 12:00:00 | 15 1 | 2013-01-02 11:00:00 | 1 1 | 2013-01-03 ...
1
vote
0answers
47 views

Can't get EntityFunctions.TruncateTime() to work

I am using Entity Framework Code First. Using LINQ to Entity I want to grab a record based on a DateTime value. Here is my current code: /// <summary> /// A method to check and see if the ...
0
votes
0answers
41 views

Dynamic linq query in EF

I am using dynamic linq query in EF4. Below code throws error: 'New' cannot be resolved into a valid type or function. var x = ent.OM_COMPANY.Where(qry).OrderBy("it.CM_CODE").Select("New(it.CM_CODE, ...
1
vote
1answer
41 views

Entity Framework .Any does not generate expected SQL WHERE clause

Entity Framework and Linq-To-Entities are really giving me some headaches. I have a fairly simple query: var result = feed.FeedItems.Any(ei => ei.ServerId == "12345"); feed is a single EF entity ...
1
vote
1answer
42 views

linq to entities - updating tables with new values not working

The code below is updating the correct values into the OBJECT_TYPES table, but the OBJECT_ITEMS table is being overwritten but I am not sure why. Can anyone help? var templateId = ...
1
vote
1answer
65 views

Aggregate objects using LINQ

I have SQL query to get count of blocks, grouping by block name var sql = @"select count(*) [COUNT], o.NAME from WISH w left join objects o on o.ID = w.[BLOCKID] ...
0
votes
1answer
84 views

Unable to get data from WCF service using entity framework

I am using a web application where user pass one argument to the service and it will return string datatype which is query result. In the service i am using Entity Framework to query based on the user ...
0
votes
0answers
40 views

Should FirstOrDefault(lambda) and Where(lambda).FirstOrDefault() work the same?

I was under the impression FirstOrDefault(lambda) had the same effect on a collection as Where(lambda).FirstOrDefault() in LINQ to EF. Then I found this issue in code to find the most recently ...
0
votes
0answers
53 views

How to get primary key field name for null EntityReference?

I've made the following function to assign value to a foreign key reference (I know, it's dirty and does not work for compound keys): void setFk(dynamic tbl,object id){ var ...
0
votes
2answers
34 views

Sql query to Left Join in Linq to entity

I've below SQL query Select LC.*,LP.[LandingPageName] from [LandingPageCompanies] LC Left join [LandingPageContent] LP on LP.SubCategoryID=LC.SubCategoryID where LC.[CategoryID]=17 And i need ...
0
votes
1answer
137 views

Updating Child Entities Entity Framework

Hi Here here we another Entity Framework question and updating child entities. The scenario: I have objects called Clients that have Assessments and Weekly Assessments. Clients are created and saved ...
0
votes
2answers
73 views

NotSupportedException in LINQ query with inner and outer joins

I have the following query with several inner and outer joins. The query create a new class that is not a part of Entity framework but a class that holds data for report: from T6340 in PayOrders ...
1
vote
3answers
45 views

Can I convert a Func<T, bool> to a Func<U, bool> where T and U are POCO classes where I can map properties of one to the other? If so, how?

I have a scenario where a method will take a predicate of type Func< T, bool > because the type T is the one that is exposed to the outer world, but when actually using that predicate I need that ...
2
votes
3answers
91 views

LINQ to entity - Triggers and Table Defaults

I have a database table called Room. This table has some defaults on certain columns: ALTER TABLE [dbo].[Room] ADD CONSTRAINT [DF_Room_Created] DEFAULT (getdate()) FOR [Created] GO ALTER TABLE ...
0
votes
1answer
24 views

add properties from another list to an entity

I have spent hours to find the answers on SO. I either don't know how to search or maybe I am asking the question wrong. Here is the situation: I have an entity Customers. I get this from my db ...
0
votes
1answer
49 views

What is a good strategy for handling Complex Right Outer Joins in LINQ / EF

I have this Model My goal is to retrieve all resources for a user except for resources that share a restricted role with that user. This is not too hard in straight SQL ...
0
votes
0answers
54 views

Linq-to-Entities - how to order if I have my field to order by as string?

I'm using Entity Framework 4 (database-first approach) against SQL Server and Reporting Services to do my reporting. The user can select a number of filter criteria in an ASP.NET page, and the user ...
0
votes
0answers
71 views

SQL query equivalent in linq to entity

I want convert this SQL query to entity framework linq? I've converted that SQL to linq expression, But my converted code is not right. SELECT SUM(T1.Bs)-SUM(T1.Bd) FROM ( SELECT 0 AS Bs, ...
-1
votes
1answer
62 views

Linq Expression on sub child entities for n levels

Need Generic expression for the below Query. I don't want to use the Dynamic library and Predicate builder. I am generating expressions dynamically. var test = entity.User.Where(PUser => ...
2
votes
2answers
456 views

The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties

Using this code in Entity Framework I receive the following error. I need to get all the rows for a specific date, DateTimeStart is of type DataType in this format 2013-01-30 12:00:00.000 Any idea? ...
0
votes
0answers
71 views

Linq Expressions on Child entities with Many to Many and Many to Single Relation Ship

I Have tables with following relation User Course (User 1 to Course Many relation) Class (Course 1 To Class 1 Relation) Subject(Subject Many to Class 1 Relation) I need to filter data using ...
1
vote
1answer
258 views

LINQ to Entities does not recognize the method 'System.DateTime AddSeconds(Double)' method, and this method cannot be translated into

I receive this error on base {System.SystemException} = {"LINQ to Entities does not recognize the method 'System.DateTime AddSeconds(Double)' method, and this method cannot be translated into a ...
1
vote
1answer
61 views

Efficient way to get previous n day by date data from LINQ/EF

I have a Sales tables that holds all order details. It has columns ID, SaleDate, Price. Through Entity Framework v4, what is the efficient way to get day by day total sales for previous 30 days? ...
2
votes
1answer
107 views

Delete object in foreach

I got an exception which said: The object cannot be deleted because it was not found in the ObjectStateManager when I call DeleteObject() in a ForEach loop. After I searched this question in ...
2
votes
1answer
86 views

How do i rewrite this code to avoid the “Linq to entities Does not recognize method” error

I have the following method on a MVC 4 Web API controller. public JsonResult GetJourney(List<string> assetIds, DateTime start, DateTime finish) { var journey = new ...
4
votes
2answers
59 views

Linq2Entites Count() with condition on bool not working as “I thought it would”?

Given the following very simple linq statement vm.VerifiedGroups = db.ReportGroups.Count(g => g.Verified); or vm.VerifiedGroups = db.ReportGroups.Count(g => g.Verified == true); where ...
1
vote
1answer
208 views

Entity Framework 5 installation verification

I have an ASP.NET MVC 3 project using .NET framework 4.0 and LINQ to SQL. Because I have serious problems of performance with some queries the first time they are executed I decided to use Entity ...
0
votes
1answer
103 views

Linq to Entity, selecting group with or without value

Hi Need some help with LINQ query. I have entity called Shift. This entity has several value field but the ones I am intressted in are ShiftID (int), ShiftDate (DateTime) and GrossMount ...
0
votes
5answers
107 views

How to do dynamic comparison in Linq to SQL with a string field?

How to do dynamic comparison in Linq to SQL with a string field for obtain a query like: "SELECT COLUMN_1, COLUMN_2" + "FROM "+ stringTABLE + "WHERE " + stringCOLUMN_1_or2 + " = ' " + 8 + "'"; I ...
0
votes
1answer
41 views

Why won't this code delete rows from table?

I have the following code: Using dbContext As pbu_housingEntities = New pbu_housingEntities ' First, delete all current records associated with the specified semester. Dim delete_old ...
0
votes
1answer
93 views

Entity Framework method to query based on a complete object

How can I achieve following query method in Entity Framework, below is a snippet from NHibernate documentation http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/querycriteria.html Example ...
-1
votes
1answer
136 views

Entity Framework, filter in returned class the circular Icolleciton list immediately

Exploring the wonderful world of REST services with the new MVC 4 framework. I stumble upon the issue that in the returned JSON data i want to filter immediately without thouching the EF. My Employee ...
0
votes
4answers
71 views

Linq Query for Corresponding SQL

Below is my SQL Statement, I am Unable to Convert to LINQ select o.CustId,c.CustName,Count(o.CustId) as Total_Orders from Customer c inner join Orders o on c.CustId = o.CustId group by ...
2
votes
1answer
151 views

Cache Linq to Entities execution plan with Entity Framework 4

I'm profiling an ASP.NET web application and I'm noticing that my EF4 execution plans aren't being cached. Every time a page is loaded all Linq expressions are being recompiled, as shown in the ...
2
votes
2answers
171 views

MySql 5 & LINQ to Entities EF 4 causing “Object must implement IConvertible” when querying across network

When using the same MVC 3 & C# code along with copies of the same MySql 5.5 database on 2 different MySql installations. One works perfectly while the other one fails with an "Object must ...
1
vote
1answer
57 views

EF one to one relationship when neither are primary keys

I have 2 entities that need to map together. Since they are both database views, neither is technically a primary key. [Table("Name")] public class MemberInfo { [Key] ...
0
votes
2answers
90 views

Type information not showing in LINQ expression in Entity Framework 2012

I am new to Entity Framework but trying get my hands into it. After going thru many blogs I have started working on implementing it in my project but I have the following issue. I have VS 2012 and ...
0
votes
2answers
121 views

Reading related data from two entities using LINQ

I have a one to many relationship of Users to Certificates. In my view I am able to see all data from Certificates and related data from Users. However this view gives me a repeat of UserID and is not ...
0
votes
1answer
158 views

Multiple aggregates in linq to entities (code first)

Given the following model, I want to be able to retrieve the number of points gained for a single player and the average number of point gained for all players given a time period. This should be done ...
1
vote
2answers
97 views

How to write a dynamic where 'like' query in Entity framework?

Here is my code: //order my baselist is context.Entity public static GridData Getdata<T>(ObjectSet<T> baseList, int currentPage, int rowsPerPage, string sortcolumn, ...
0
votes
1answer
64 views

Crazy data being returned by EF4 - wrong data & even wrong columns

I have a core set of code that I have been using for ages to create websites with and it uses EF4 and hooks through to SQL Server 2008 R2 ... all has been working fine on mostly low level sites ...
5
votes
2answers
132 views

Is it possible to call named method within a call to Where?

I am trying to understand some performance implication of Linq from this free ebook by RedGate ftp://support.red-gate.com/ebooks/under-the-hood-of-net-memory-management-part1.pdf On page 157-158 in ...
0
votes
2answers
84 views

How to use a named method

I am using following code and trying to use a named method within Linq-To-Entities Customer FindCustomerByLastName(string lastname) { DataContext MyContext = new DataContext(); return ...
2
votes
2answers
109 views

Search on all fields of an entity

I'm trying to implement an "omnibox"-type search over a customer database where a single query should attempt to match any properties of a customer. Here's some sample data to illustrate what I'm ...
1
vote
2answers
291 views

EntityFramework : does IQueryable or IEnumerable get all the results at the first place?

I learned that IQueryable or IEnumerable datatypes do not return the results at the first place and only return them when needed. However when I open that object in the watch inspector I saw all the ...
5
votes
1answer
128 views

EF4 Unable to cast concrete type to interface

Using Entity Framework LINQ, I'd like to return a parent class for every parent table and populate a property, whose type is an interface, on the parent class with one of multiple concrete ...
0
votes
0answers
218 views

System.Linq.Dynamic to select a collection inside of a collection from Entity Framework IQueryable

I have an EF model with the relationship User->Roles. It's a one to many relationship in our database. I would like to select the ID from role's record and the name from the user's records. What I ...
0
votes
1answer
44 views

Ensuring Atomicity with Entity Framework

I am writing inserts and updates into a database using Entity Framework. The issue is that I want to do what I used to do with stored procedures, which is make groups of updates and inserts atomic by ...
2
votes
0answers
40 views

ToTraceString takes long time to execute

I have a service that executes a query through Entity Framework 4, and it doesn't have any problem, until now I tried to execute it on a Windows Server 2003 with IIS 6 or a Windows 7 with IIS 7. Now, ...
2
votes
1answer
280 views

Linq To Entities - Get User Info With All Roles

I am new to Linq and am testing it out with a new MVC site. I am still working my way through the syntax and capabilities, and I have run into a problem that I have not been able to solve. Any ...

1 2 3 4 5 9