Tagged Questions
0
votes
1answer
69 views
SQL convert to LINQ to Entities
How do I convert this SQL statement to LINQ to Entities. I cant find a way to union the tables with WHERE clause
SQL:
Declare @DID int, @key varchar(50)
SET @DID = 3
SET @key = ''
SELECT TBL.GID, ...
0
votes
1answer
39 views
can't figure out how to do multiple joins in linq to EF
tl;dr version: I need this sql statement to work with linq to EF
This is the query in SQL:
select
stu.SyStudentId,
rtrim(stu.StuNum) as StudentNumber,
stu.SSN,
stu.FirstName,
stu.LastName,
...
0
votes
2answers
40 views
How to find a linq generated Sql query that appear in Sql Server Sloq Query log?
I have some performance problem regarding some of my queries. When I query Sql Server for a list of slow queries, I find some queries that were generated by Linq-To-Entities.
For example:
SELECT
...
0
votes
2answers
103 views
Populate a list property from delimited string
This is kind of a simple application but I'm a bit new to ASP.NET MVC so I'm having a bit of trouble wrapping my head around how to accomplish this because the
What I have are two classes:
public ...
0
votes
1answer
52 views
SQL View with relational table
I'm looking to create a view page for 2 tables which are:
tbArticle:
articleid
name
tbArticleMedia:
articleid
mediaid
I'm looking to create the viewTable like this:
...
3
votes
2answers
194 views
Equality comparison fails between C# datetime and SQL datetime
I am trying to do an equality comparison between a C# datetime and a SQL datetime, which appears to fail due to the precision in which those values are stored.
So say I have a really simple SQL ...
0
votes
1answer
150 views
Create xml file by using sql trigger or LINQ to Enitity
I want to trace the database when user is insert update or delete any record.I noe I can trace database by create sql trigger.
I actually want to store those record changes in xml file ,then sql ...
0
votes
0answers
57 views
Trace database changes with linq to entities
Did linq to entity provide any function to trace the database changes when any record is insert, update or delete ?For example I insert one user record in my database. An auditing table will be ...
2
votes
1answer
91 views
What LINQ opperation related to Paging could be slowing down my query?
I've written a pretty generic LINQ query which is used throughout my app and works very well for all cases but one. I'm only running SQL Express at the moment so can't jump into sql profiler until my ...
1
vote
2answers
340 views
Self-referencing table with parent-child relationship to represent file tree using LINQ
I have a single database table representing a file tree structure.
Files
- Id (int, primary key)
- Name
- ParentId (int, foreign key to Files.Id)
How can I write a method that makes sure all ...
2
votes
0answers
30 views
Do 2 queries need to be submitted to the database to get total count and paged section using EF / Linq to Entities? [duplicate]
Possible Duplicate:
Better way to query a page of data and get total count in entity framework 4.1?
When implementing pagination using EF / LINQ to entities, I am familiar with using Skip() ...
0
votes
2answers
1k views
Updating Entity Framework Model
I have just started using EF and found it cool , I ran into a problem,
Problem:
I changed my DB schema of a column inside the table User, It was Varbinary(50) previously I then changed it into ...
2
votes
2answers
3k views
Converting string to int in linq to entities on big database
i wana convert string to int in linq to entities but Convert.ToInt32 and int.Parse can not translate to sql
And my database is BIG and can not get all of them to memory (over 60k record and get ...
1
vote
3answers
593 views
Recursive Linq or Sql query to get topmost parent of each category in self referencing table
e.g. If I have a table like below:-
create table Categories(CategoryId int primary key,
ParentCategoryId int foreign key references Categories(CategoryId))
e.g If I have the following data in ...
-1
votes
3answers
104 views
ASP.Net C#: submit image/documents to web site
I am developing RESTAURANT web site. I have a form that allows restaurant owners to submit details about their restaurant. I would like to allow them to submit an image and text document(e.g., menu) ...
0
votes
0answers
195 views
Entity Framework 4.1 Code First, LINQ, sine and cosine
I hope you can point me in the right direction. I am working on a solution that uses the EF4.1 CF approach. We also use the repository pattern. SQL Server is R2.
I have been tasked with developing a ...
1
vote
1answer
195 views
Determine number of rows per minute using Entity ObjectContext and with For loop iteration
I have a SQL Server 2008 table with a column of datetime data type. I'd like a entity query that produces the number of rows for each minute interval. For example, the results would look like this:
...
3
votes
4answers
181 views
Recommand a fitting LINQ provider to me (SQL server, complex queries)
I've been using LINQ to SQL & to entities for a while and am overall very happy with them.
However i know of their limitations and one in particular is becoming a large issue for me.
When you do a ...
0
votes
1answer
105 views
Relationships Not Passing from SQL Server to Linq to Entity Model
I am trying to create a Linq to Entity model from my SQL Server Database and most of the relationships are not being passed. There are four relationships are being passed which is really weird because ...
1
vote
2answers
201 views
Are some Funcs impossible to convert to equivalent Expressions?
This is a follow up to a question I asked earlier seen here:
Confused about passing Expression vs. Func arguments
The accepted answerer there suggests refactoring an Expression referencing local ...
5
votes
2answers
211 views
Linq: Sort by Date when its stored as text
I need to sort by date but the date is stored as text in the database. I am using Linq to entities to perform queries.
The way the database is designed it is not feasible to change the column to a ...
1
vote
1answer
60 views
Should SQL Server support the LINQ query language natively?
Supposedly, microsoft says that we should all be using Entity Framework, using LINQ (to Entities?) as the query language.
If LINQ as a query language is an improvement over SQL, then I say the ...
0
votes
3answers
988 views
Linq: How to store MD5 hash column in database
I need to put an index on a md5 hash column in the database. I will perform searches on the md5 column. I was going to store the hash as a CHAR(32) but I seen the binary column option as well. Will ...
2
votes
2answers
170 views
Character (string) encoded number to number comparison in Linq
I have this query.
levelnumber = (from b in bv.baLevels
where b.ba_Level_Code == ("0" + SqlFunctions.StringConvert((double)cl.Level_Num.Value)) && b.isActive == 1
...
7
votes
2answers
643 views
Pivoting in Linq
I am using LINQ-to-Entities, and would like to perform a pivot.
For exampe, I have this table:
| data1 | data2 |
+-------+-------+
| 1 | A |
| 1 | B |
| 2 | P |
| 2 | Q ...
3
votes
4answers
788 views
Efficiently select random rows from large resultset with LINQ (ala TABLESAMPLE)
I want to select a handful of random rows from the results of a complex query on a very large table (many millions of rows).
I am using SQL Server 2008, and the proper way to do this efficiently ...
0
votes
2answers
663 views
Select many rows from a data store using Linq to Entities
We need to accept a collection of key values from user input. Then a query must be performed on a L2E data store which shall select all rows whose keys are included in the collection. The best I've ...
1
vote
1answer
144 views
Why is LINQ-to-Entities is generating an extra left outer join
Background
I have 2 tables: OrderItem and OrderItemValue. An OrderItem can have 0 or 1 OrderItemPackageValue. The Primary key in both tables is the same and there is a foreign key reference from ...
0
votes
2answers
370 views
How to represent t-sql convert(datetime,data,style) in L2E query?
How do I write this query in Linq to Entities:
select convert(datetime,data,103) from Audit where ActionId = 1
Column Data is of varchar(max) type. I know that if the ActionId equals one in a row, ...
2
votes
1answer
192 views
CompiledQuery.Compile requires lock (EF4, SQL Server, C#)
I have the following code for which I want to know if I need a lock:
private static Func
_GetAccountAttributeGroup;
public static AccountAttributeGroup
GetAccountAttributeGroup(this
...
1
vote
3answers
146 views
How to OrderBy Date stored in a Varchar field in EF4
We have a legacy database (SQLServer 2008) with thousands of rows in it. Each record has a logdate field which is a date but stored as a varchar in the format 21/04/2010 16:40:12.
We only need to ...
1
vote
1answer
64 views
L2E: GroupBy always gets translated into Distincts, never Group By
How can I get the Linq-to-Entities provider to truly perform a GROUP BY? No matter what I do, it always generates SQL that is far slower than an actual GROUP BY. For example:
var foo = (from x in ...
0
votes
1answer
99 views
Better Database Query to Retrieve Nested Values
I am trying to retrieve some data from my database using LINQ to Entities. (I am ultimately using the data to create a Chart using the new ASP.NET MVC3 ChartHelper.)
As part of this, the user passes ...
4
votes
3answers
2k views
Linq to Entities: see the resulting query (context.Log = Console.Out)
I just realized if your C# application use LINQ-TO-SQL classes to interface with the database, you can your query like this
using (DatabaseContext context = new DatabaseContext())
{
...
0
votes
1answer
190 views
LINQ to Entities, several one-to-one references to the same tables and naming
I've started porting a .NET SQL Server application to LINQ to Entities. I have (among others...) one table called Users, and one called Time. Time is reported on a specific user (UserId), but it is ...
0
votes
3answers
169 views
How do I query a VARCHAR as an integer
I have a column that holds VARCHARs and I have a flag that determines if the value is a string or integer. I would like perform a search on the integers but they are stored as VARCHAR. How do I do ...
4
votes
6answers
8k views
Error - SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM
i have an app written for 2008.
We are using linq to entities.
We've now had to switch the DB to 2005. I am getting the following error on linq SELECT queries:
Error - SqlDateTime overflow. Must ...
2
votes
4answers
661 views
LINQ-to-Entities get rid of sp_executesql
I am trying to optimize my database now using Database Engine Tuning Advisor, and the problem I am facing is that my SQL Profiler trace shows tons of queries performed using sp_executesql - and the ...
14
votes
4answers
6k views
How do I eliminate Error 3002?
Say I have the following table definitions in SQL Server 2008:
CREATE TABLE Person
(PersonId INT IDENTITY NOT NULL PRIMARY KEY,
Name VARCHAR(50) NOT NULL,
ManyMoreIrrelevantColumns VARCHAR(MAX) NOT ...
0
votes
2answers
407 views
Performing dynamic sorts on EF4 data
I'm attempting to perform dynamic sorting of data that I'm putting into grids into our MVC UI. Since MVC is abstracted from everything else via WCF, I've created a couple utility classes and ...
1
vote
1answer
295 views
Cannot perform an ORDERBY against my EF4 data
I have a query hitting EF4 using STEs and I'm having an issue with user-defined sorting. In debugging this, I have removed the dynamic sorting and am hard-coding it and I still have the issue. If I ...
5
votes
3answers
2k views
Does Linq to SQL or Linq to Entities 4.0 support the hierarchyid datatype
Is their a way to use linq to SQL/Entities 4.0 to work with the hierarchy datatype?
1
vote
2answers
4k views
OrderBy and Distinct using LINQ-to-Entities
Here is my LINQ query:
(from o in entities.MyTable
orderby o.MyColumn
select o.MyColumn).Distinct();
Here is the result:
{"a", "c", "b", "d"}
Here is the generated SQL:
SELECT
...
3
votes
2answers
681 views
Access SQL Server 2008 Change Tracking Info via Entity Framework
Based on this link it looks like I can get date inserted / date modified information "for free" (without the need for triggers etc.) using Sql Server 2008 by simply enabling Change Tracking. I am ...
1
vote
2answers
1k 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 ...
3
votes
3answers
743 views
Using SQRT in a Linq EF Query
I need to use the SQRT function as part of a where clause in a Linq EF query. I figured I could do this:
var qry = context.MyTable.Where("sqrt(it.field) > 1");
But it returns an error saying ...
0
votes
2answers
731 views
Linq to Entities and SQL Server 2008 hierarchy id
Does Visual Studio 2008 SP1 / .NET 3.5 support Linq to Entities (ADO.NET Entity Data Model / edmx) with SQL Server 2008 R2? Specifically, the hierarchy id type? If so, do you have a download link, ...
11
votes
2answers
6k views
How do you do full text search (FTS) with Linq to ADO.NET entity framework?
Now that SQL Server 2008 has full text search built in. I'm looking to use it to power my website's search. I'm also looking at using ADO.NET entity framework for my ORM but I was wondering how do you ...
