1
vote
1answer
48 views
How Do I Avoid This Behavior?
Say I have an entity that looks as follows
public Order OrderEntity
{
EntityRef<Customer> CustomerEntity;
EntitySet<OrderDetail> OrderDetailEntity;
…
2
votes
3answers
27 views
LINQ to SQL, ExecuteQuery, etc
This might all be a bit subjective:
Our organization has made a strong attempt to adopt LINQ to SQL as our primary data access method and for the most part this works well. (Let’s …
1
vote
1answer
18 views
How do I get to the bottom of this Linq to SQL error?
An attempt has been made to Attach or
Add an entity that is not new, perhaps
having been loaded from another
DataContext. This is not supported.
Having worked with Linq …
0
votes
1answer
19 views
How to Detect Select n+1 problems in Linq to SQL?
What is the best way to detect Select n+1 problems if i am using linq to SQL, right now we are working on a project and it seem to be pretty slow to display some lists.
What is th …
0
votes
2answers
30 views
LinqToSql InsertOnSubmit memory leak?
I am trying to isolate the source of a "memory leak" in my C# application. This application copies a large number of potentially large files into records in a database using the i …
0
votes
1answer
14 views
Can you use a C# library in a AMP-server?
Is it possible for me to build some database functionality in a C#-library (using LINQ 2 SQL) and then somehow import it into a php (joomla) project?
1
vote
1answer
26 views
PredicateBuilder and nested predicates
I'm trying to use the Predicate from Albahari to create a TSQL statement like:
select * from channel
where channel.VendorID IN (@vendorIDs)
AND channel.FranchiseID IN (@franchiseI …
0
votes
4answers
31 views
How to do an update with linq to sql?
I have two tables in my DB
Class
Student
One Class has many Students
What's the best,more elegant way to update the students of one class, using Linq?
0
votes
0answers
20 views
Singleton per while loop in Unity
I have a loop that looks something like this. Not real code, just an example:
while (true)
{
IJobService jobService = ServiceLocator.Resolve<IJobService>();
jo …
2
votes
1answer
16 views
LINQ-to-SQL and SQL Compact - database file sharing problem
Hello.
I'm learing LINQ-to-SQL right now and i have wrote a simple application that define SQL data:
[Table( Name = "items" )]
public class Item
{
[ Column( IsPrimaryKe …
0
votes
1answer
25 views
Using LINQ To SQL with multiple databse tables
I have an employee class with as follows:
public class Employee
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserNa …
0
votes
1answer
12 views
SQL to Linq translation with inner join and 2 left joins (with sub-query)
Hi there! I have the following query which works fine in SSMS. Im using LinqPad (C#) but really puzzling to succeed with the left outer join in LinqToSql:
SELECT DISTINCT
A.Loc …
0
votes
1answer
23 views
how does linq2sql handle tables with just FK in it?
I have a mapping table like:
Article_to_Categories
ArticleID
CategoryID
How would I insert into this table using linq2sql?
0
votes
1answer
26 views
Performance regarding return type for LINQ query compatible with automatic sorting
Hi! this isn't really an issue, but more of a concern that I would appreciate some input on please.
Winforms C# .net3.5[sp1] Visual Studio 2008 using Linq2Sql (more specifically P …
1
vote
2answers
55 views
ASP.NET MVC - Join Tables using LINQ
My application is structured as:
namespace DomainModel.Abstract
{
public interface IContentItemsRepository
{
IQueryable<Content> ContentItems { get; }
…
