Tagged Questions

0
votes
3answers
20 views

LINQ to SQL classes to my own classes

I'm looking at using LINQ to SQL for a new project I'm working on, but I do not want to expose the LINQ classes to my applications. For example, do an select in link returns a Sy …
0
votes
1answer
28 views

Linq To SQL: Table relationships

Assume I have a two tables, A and B. Table A has a primary Key called A_ID of type int, and table B has a foreign key called A_ID. When I add the two tables to a Linq To SQL da …
1
vote
2answers
35 views

Generating very large XML file with Linq-to-XML and Linq-to-SQL

I'm trying to do a dump to XML of a very large database (many gigabytes). I'm using Linq-to-SQL to get the data out of the database and Linq-to-XML to generate XML. I'm using XStre …
1
vote
3answers
34 views

UNITY: passing in a new datacontext each time?

Hi there, I am trying to use unity to automatically inject a datacontext on my repository using a new instance each time.., my idea is the ensure that each time a new datacontext …
2
votes
2answers
15 views

LINQ: DataContext Life and System.Data.SqlClient.SqlException: Timeout expired.

Hi there, i seem to be getting a lot of this in my Linq 2 SQL System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operati …
0
votes
1answer
24 views

Simple math question with LinQ, simple Join query, Nulls, etc.

I have 2 tables   1. Client   2. Operations Operations can result in: Credits or Debits ('C' or 'D' in a char field) along with date and ammount fields. I must calculat …
0
votes
1answer
30 views

Generic Table<TEntity>

Hi everyone, Trying to use Linq to SQL for a small project I'm working on at home. I have generated a the context code and all my entity classes using dbmetal.exe (from the DBLinq …
1
vote
2answers
52 views

how does linq2sql keep track of database objects?

Hi, When using Linq2sql everything automagically works. My experience is that going with the flow is not always the best solution and to understand how something internally works …
1
vote
1answer
51 views

what is the easiest way to have multiple db connections when using linq

Optimally I would like linq to use X database connections instead of 1 to speed things up. The only way now is to open X connections, and create X databasecontexts, and associate …
1
vote
1answer
18 views

LINQtoSQL: What is the best way to check if a row exists on insert?

Hi, I'm doing updates from Excel/CSV files to a database. I'm using LINQ to SQL for database operations. I have quite a few columns to update/insert, so I guess it would be easier …
4
votes
4answers
73 views

What’s the difference between multiple where clauses and && operator in LINQ-to-SQL?

It looks like I can write a where x.a==1 && x.b==1 as where x.a==1 where x.b==1 As I understand the latter turns into .Where(x => x.a == 1).Where(x => x.b ==1), b …
0
votes
6answers
71 views

ASP.NET MVC Forum Application

I need to write a forum application for a friend's web site. I want to write it in C# 3.0 against the ASP.NET MVC framework, with SQL Server database. So, I've two questions: Sh …
1
vote
4answers
48 views

Extending IQueryable to return objects where a property contains a string

I see a lot of code similar to the following var customrs = MyDataContext.Customers.Where(...); if (!String.IsNullOrEmpty(input)) { customers = customers.Where(c => c.Email.C …
0
votes
3answers
46 views

Linq2SQL or SQL: Find dates that don’t have events

What would be the best way to find dates that dont have events in a given time interval given that different events can overlap, span multiple days, start before the interval, and …
0
votes
3answers
74 views

Conversion from string “” to type ‘Integer’ is not valid.

When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error. Dim maj = (From c In connect.Courses _ Wher …

1 2 3 4 5 164 next
15 30 50 per page