0
votes
How would you refactor this LINQ code?
I'd be wary of the solutions of the form:
// from Keith
from x in GetInitialResults()
//either we don't need to check, or the check passes
where string.IsNullOrEmpty(ddlFile …
3
votes
How do I ensure Linq to Sql doesn’t override or violate non-nullable DB default values?
Linq-To-Sql generated classes do not pick up the Default Value Constriants.
Maybe in the future, but the issue is constraints aren't always simple values, they can also be scalar functions …
0
votes
Can I use LINQ to convert a List<MyObjectType> into a DataSet?
if MyObjectType is a linq-generated entity, and those objects are not already associated to a data context you can call
foreach( MyObjectType value in myList )
{
d …
0
votes
How to assign null to sql entity columns
You only need to assign then entites nullable property to null. I've never had to assign or test against System.DBNull when using linq-to-sql entities.
It sounds like …
1
vote
Which is fastest? Data retrieval…
the problem I have here is that I need it all, i just need it displayed seperatly...
The answer to your question is 1 query for 3000 rows is better than 6 queri …
6
votes
Should I use one LINQ DataContext or many?
I'm assuming you're asking about design versus runtime pattern. I general I'd say no:
While it may be possible to partition your database into multiple data contexts, then that wou …
5
votes
Why doesn’t the Union function in LINQ remove duplicate entries?
Linq Union does perform as you want it to. Ensure your input files are correct (e.g. one of the lines may contain a space before the newline) or Trim() the strings after s …
