0
votes
2answers
91 views

Multi Threading with LINQ to SQL

I am writing a WinForms application. I am pulling data from my database, performing some actions on that data set and then plan to save it back to the database. I am using LINQ to SQL to perform the ...
1
vote
1answer
51 views

Linq to sql query: how to prevent duplication of code

My problem I'm very new to Linq and I have to difficulties using it. I have written functional queries but I was forced to duplicate some code in every single query. The first part for the queries ...
6
votes
2answers
58 views

Why is Convert.ToDecimal returning different values

I was hoping someone might help me understand why Convert.ToDecimal when used within linq is rounding a decimal and when used outside, it does not Given the following DB: CREATE TABLE ...
0
votes
1answer
27 views

Linq to Sql, group by 2 property and substring

I have an initial query that I want to modify to increase granularity in my results. But Visual Studio tells me my query isn't valid and I can't understand why. Basically I want to group my data ...
1
vote
1answer
73 views

SubQuery and Group by in linq

This query was written in the our system some time ago but the performance of this query is getting poor with a little increase in data. My investigation shows (CodeCount) where query firing another ...
2
votes
1answer
83 views

How do I optionally reverse the sorting order in Linq-to-Sql?

I have the following code: IQueryable<Guid> GetOrdered(IQueryable<Guid> ids) { return from id in ids join storedId in storedIds on id equals storedId.Id orderby ...
1
vote
1answer
45 views

Get string data from specific table of local database

I'm trying to get data from my local database that is present in my app project. This is the code: private void HW_Info() { const string strConnectionString = ...
1
vote
1answer
73 views

Convert string to int in linq-to-sql query: how to deal with values which cannot be converted?

I'm running this query against a database: var result = (from leads in dc.T_DM_FactDemandeWebLeads join demands in dc.T_DM_DimDemandeWebs on leads.DemandeWeb_FK equals ...
1
vote
1answer
35 views

LINQ to SQL exception when converting nullable value to non-nullable using Convert

Problem Given the following: class MyClass { public DateTime DateTime { get; set; } } and a queryable, where MyTable.NullableDateTime is a DateTime? mapped to an SQL datetime: ...
0
votes
0answers
46 views

Asp.net LinqToSql with SqlCacheDependency - Cache is getting invalidated correctly, BUT fail to reinitialize cache after the invalidation

I am trying to use a SQL dependency to invalidate the Linq query cache upon changes to the database. I have configured the dependency correctly and it seems that the cache value is getting invalidated ...
0
votes
2answers
56 views

LINQ Group By and aggregate fields

I've always struggled with grouping in LINQ, I'd like to group based on the date part of a datetime field and aggregate other fields. Example table layout myDateField myIntField1 myIntField2 ...
0
votes
1answer
19 views

Frequent TransactionException for simple query

Using .NET 4, LINQtoSQL, in an MVC 4 app I have just started experiencing a problem where a large amount of requests are failing. The requests seem to be failing on a very simple select from the ...
0
votes
1answer
30 views

Linq 2 Sql with Sproc, as queryable, are any query tweaks turned into SQL or are they C#?

So given some sproc on a datacontext say I do a.. from arr in someContext.MySproc() select arr.Hello, arr.Whoa where arr.Name = "grumbug" If it was from arr in someContext.MyTable then the select ...
0
votes
0answers
65 views

Overlapping nullable foreign keys in LINQ to SQL associations

I'm dealing with a common address object in LINQ to SQL that contains a country and a state, both of which participate in foreign key relationships to country and state tables. The country will always ...
0
votes
1answer
56 views

How to make database object to use with LINQ to SQL

MSDN expalins it as belows // Northwnd inherits from System.Data.Linq.DataContext. Northwnd nw = new Northwnd(@"northwnd.mdf"); // or, if you are not using SQL Server Express // Northwnd nw = new ...
2
votes
4answers
177 views

Use T-SQL custom function in C# code

I have to define a custom function in my DB to calculate the "validity end date" of an entity. This function will be used in a stored procedure, but I need the same logic in a web app. I'm using ...
0
votes
0answers
52 views

Automatically truncate string in LinqToSql? [duplicate]

Is there an overall setting to automatically truncate my strings when working with LinqToSql? I occasionally get the "string or binary data would be truncated" exception and it's OK for our solution ...
1
vote
1answer
73 views

Find Missing IDs From List<int> in DataTable

I have a List and a DataTable which contains a column to match the IDs in the list. I need to identify all IDs in my list that are not in the DataTable. I tried getting an IEnumberable DataRow and ...
0
votes
1answer
656 views

entityframework There is already an open DataReader associated with this Command which must be closed first

I have the following code that retrieves data from a customer table var customers= context.CustomerEntities.Include("Addresses").Select(Mapper.Map).ToList(); The mapper function, maps the entity ...
0
votes
1answer
70 views

Linq DataContext.Mapping.GetTables() returns nothing

I am trying to use LINQ as much as possible so I would like to figure this one out. I am able to get a list of tables in a user-selected server/database using the DataContext ExecuteQuery method but ...
0
votes
1answer
48 views

LINQtoSql - how to wildcard search based on string array

In one of our tables there is a comma separated keyword field, is there any direct LINQtoSQL way of searching through each of the keywords from a string array? The following only returns if there is ...
1
vote
1answer
79 views

VB - System.NullReferenceException - LINQ to SQL with datestamps

I have an SQL DB with a table (Beko) where each record contains a datestamp (of data type date) for the date it was created. I am trying to populate a calendar control (calBeko) so that each day that ...
1
vote
2answers
282 views

How do I insert in LINQ to SQL when I have a foreign key and a unique constraint?

Suppose I have a simple database schema with a customers and orders table with a foreign key from orders to customers, and a unique key on customer name. Customers ----------- [CustomerID] INT NOT ...
8
votes
1answer
185 views

Why does iterating over IQueryable give the first value for each item in the result?

I have a block of code that attempts to query some simple configuration parameters from a database. However, using the code below, as soon as I enumerate the result I get the first value for each item ...
2
votes
2answers
60 views

Linq to Sql selection of items with count of nested

I have the following table structure: Using Linq To SQL I want to get a list like this: new { E = e, // the E object Ds = e.Ds, // list of D objects referenced by E NumAs = ??? ...
3
votes
2answers
67 views

Using LinqToSql without load base in memory

I have one problem. If i'm using LinqToSql, my program load my database in memory. little example: //pageNumber = 1; pageSize = 100; var result = ...
-1
votes
1answer
103 views

LINQ dynamic case

I have this method: private string GetLanguage(String currentLanguage, dynamic entity) { return (currentLanguage == "de" ? entity.language.German : currentLanguage == "fr" ? ...
0
votes
1answer
28 views

track changes in a linq to sql object, which was passed over wcf (back and forth)

I first get an object (here a object of the user class) per Linq to sql from the database. dataacces da = new dataaccess(..); user obj = da.users.First(o => od.id = 1); then the user object is ...
1
vote
1answer
175 views

SQL 'Time' C# Equivalent - System.TimeSpan does not work

Well, I'm trying to retrieve data from a database, the column name is 'EventTime' with datatype time(7), the following is my C# code: [Column(IsDbGenerated = true)] public TimeSpan EventTime { get; ...
0
votes
2answers
121 views

how do I check for underlying null value using linq to sql?

I know that if you query a linq-to-sql record (ie row in DB/object) with a null field, then linq to SQL will allow you to access the null value without a null reference exception, like this: Dim ...
1
vote
1answer
35 views

LINQ to SQL Associations Not Generating

I created a basic database via SQL Server, with the tables generated by the following code: CREATE TABLE [dbo].[Characters] ( [ID] INT NOT NULL PRIMARY KEY, [Name] varchar(MAX) NOT NULL, ...
1
vote
1answer
35 views

IQueryable Evaluation

I'm new to EF/Linq-To-SQL. I read on SO previously that IQueryable is beneficial over IEnumerable in that it does lazy evaluation. Concerning the following simple example: var records = ...
0
votes
0answers
98 views

LINQ To Sql Update Inside Loop

My question is this, if I loop through my collection, shown below, and set the values appropriately would I need to call dc.SubmitChanges() at the end of each iteration for it to work properly? ...
1
vote
1answer
85 views

LINQ to Entities and casting

I have a few EF code first classes that has a CategoryId member, which is also definied in the interface called ICategoryFilterable. public class One : ICategoryFilterable { public ...
1
vote
0answers
177 views

the member “ …” has no supported translation to SQL error

im learning the ropes in LINQ and created a DB and been trying to update a table record but i keep getting the member P.roject1.ChildDBdetails.Id has no supported translation to SQL. this is the ...
1
vote
1answer
159 views

C# .NET memory leak: sawtooth memory usage when GC stage#1 and stage#2 run

I have an event driven app that I was tasked with maintaining. About 100 events run every 30 seconds, on separate timers. Over time the events alias into a constant stream of about 1-3 events per ...
0
votes
1answer
107 views

Generate a report from Northwind DB using Linq

I'm trying to generate following report from popular NorthWind DB using Linq. It should be group by Customer, OrderYear. CustomerName OrderYear Amount I've to use the following tables ...
1
vote
1answer
59 views

linq to sql lazyloading not working

I'm trying to use linq to sql to perform a simple select on a parent entity named Customers which has a one to many relationship in my dbml designer to an entity called Projects. With a join, I can ...
0
votes
2answers
300 views

Can I update LINQ-to-SQL records retrieved with db.ExecuteQuery()?

My query is dynamically retrieved from the app.config. I know that certain columns will be included. I want to update a column in each record returned after processing it. Can I do this using ...
4
votes
1answer
218 views

Business Logic Layer Design

I feel like such a noob for asking this question, but it's been bugging me for a while now. When designing the BLL of a tiered application, would you put all your entity classes in one namespace? For ...
0
votes
1answer
55 views

Exception: Argument must be either a FieldInfo or PropertyInfo On server

The Environment: Development PC: Windows 7 x64 clean install, visual studio 2012 and IIS 7.5 Deployment Server: Windows 2008 w/ sp2, iis 7, .Net 4.0 (not sure if it's 32 or 64 bit) Language: VB ...
2
votes
1answer
178 views

Custom Linq-to-SQL MappingSource

I have a project which mixes compiled entity framework domain with dynamicly defined external databases. Users can supply the connection string, table name, and column names at run time to access an ...
2
votes
3answers
593 views

Operator '||' cannot be applied to operands of type 'string' and 'bool'

I dont know why meantime i compile my query in linq as follows below from c in PriceListPolicies_TBLs where ((c.CountryCode ?? "VNALL")== "VNALL" ? "VN" : c.CountryCode || (c.CountryCode ?? ...
0
votes
3answers
223 views

select records with max aggregate using Linq To SQL

I have following two tables: DocumentType Id INT, Name VARCHAR(100), Active BIT, CreatedBy INT Document Id INT, DocumentTypeId INT, Version SMALLINT, Text NTEXT I ...
0
votes
0answers
18 views

Is ther any way to make Linq To Sql generate row wrappers that default to value comapre instead of reference compare?

The classes that Linq to Sql generates to represent a row from a table default to reference equality what calling Equals() We have many tables and writing an override statement for every Equals() ...
0
votes
1answer
85 views

If and else statement with linq

I am trying to use the statement if and else in my linq query but i can not show the right result ,below you can see a part of the code : from c in dc.Train_TBLs select new {c.CodeTrain, DBL1 = ...
0
votes
2answers
79 views

Convert sql left join to linq2sql code without nested queries

I need to format this SQL into LINQ2SQL query. I have problem with second join (left). I don't want to use nested queries so I wrote SQL which works. Thank you in advance. select * from Accounts a ...
1
vote
0answers
43 views

TSQL / .net transaction handling LinqToClasses DataClassesDataContext

I am using T/SQL stored procedures to ensure that if data gets into the database the data has integrity. I use boilerplate code for the stored procedures to wrap up the stored procedure in a ...
1
vote
1answer
92 views

I do not seem to get LINQ2SQL queries back with mini-profiler?

I have a 2 tier web application. DataAccess and WebSite. So in my dataContext.cs on the DataAccess tier I added the wrapper... //The autogenreated context when I made the linq2sql class public ...
0
votes
1answer
63 views

will my VB code wait for a linq-to-sql stored procedure to finish?

I have VB code that calls a complex stored procedure via linq-to-sql. Will the VB code wait for the SP to finish before continuing? Or will it just make a call to the server to execute the SP (and ...

1 2 3 4 5 31