Search Results

1
vote

How do I connect to a database and loop over a recordset in C#?

If you are intending on reading a large number of columns or records it's also worth caching the ordinals and accessing the strongly-typed methods, e.g. using (DbDataReader dr = cmd …
3
votes

How can I get Column number of the cursor in a TextBox in C#?

int line = textbox.GetLineFromCharIndex(textbox.SelectionStart); int column = textbox.SelectionStart - textbox.GetFirstCharIndexFromLine(line); …
1
vote

Visual Studio 2008 crashes horribly

Visual Studio 2008 is just an application, no application should be able to cause your machine to reboot like that. What can cause your machine to reboot like that is drivers and hardware.. …
1
vote

Linq to SQL Class - Stored Procedure Signature Change

There is a third-party tool that does this available from http://www.huagati.com/dbmltools/ …
2
votes

SQL 2 LINQ query (called by databinding) completely freezing WPF application

Having a property open a database connection and run a query is not a good pattern. A better approach would be to query a set of objects from LINQ to SQL and bind those to the WPF control …
0
votes

How do I use sqlmetal to generate an internal (not public) data context

You could try using my LINQ to SQL template that provides a drop-in replacement for the D …
1
vote

LinqToSql overriding insert with inner classes C#

The InsertX/UpdateX/DeleteX methods are called after LINQ to SQL has determined which objects will be included in SubmitChanges. You would have been getting a timeout using two DataContext …
2
votes

LinqToSql - mapping exception when using abstract base classes

This looks like a bug - we special case Single on a primary key to do a local lookup but it looks like this code path is not grabbing the metadata properly. The 1=1 hack will mean it goes v …
0
votes

Getting rows from a SQL table matching a dictionary using LINQ

Another option is to consider how you populate m_authors and whether you can include that in the query as a query element itself so it turns into a server-side join/subselect. …
2
votes

Does Linq to Entities 4.0 have Fulltext capabilities?

There are no specific operators or support for full text directly in EF v4.0. …
1
vote

Linq caching data values - major concurrency problem?

LINQ to SQL uses the identity map design pattern which means that it will always return the same instance of an object for it's given primary key (unless you turn off object tracking). The …
1
vote

Linq to Entities query hitting db twice

Is ent.Inspectors an IEnumerable containing two items? …