Search Results

0
votes

Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.

If you need every column then just use SELECT * but remember that the order could potentially change so when you are consuming the results access them by name and not by index. I would igno …
1
vote

Linq to SQL: select optimization

If you have columns that are very large such as binaries and images then it can make a significant difference which is why LINQ to SQL allows you to specify delay loading for certain columns so tha …
3
votes

Cross apply in Linq

The only way to use it would be to wrap the above code in a stored procedure and wrap it with LINQ to SQL. [)amien …
0
votes

LinqToSql Producing Different Sql Queries on Different Machines for Identical Code

Sounds like the LINQ to SQL classes (DBML and/or associated code generation) between the two is not the same - specifically how the association is defined between these two tables. …
1
vote

Can Linq-To-Sql be aware of similarities of two tables?

One option would be to create a view on the server that unioned the results if it's for query only. For update scenario's your more stuck as it wouldn't be possible for LINQ to SQL to know …
0
votes

SQL Express 2008 Not committing LINQ to SQL writes in sequence?

When you say you have processed them in the right order do you mean the order in which you told LINQ to SQL to do something? The reason is that LINQ to SQL internally reorders the operations. …