1
vote
How to delay loading aproperty with linq to sql external mapping?
I believe you would have to do something like what Daniel Schaffer said in code, but without the [Column] attribute, since you would define the mapping in the XML file.
…
4
votes
Access vs SqlServer for a Simple Database
A good alternative to Access which I use a lot is SQL Server Compact (SqlCe). This is a completely …
3
votes
Concurrency with Linq To Sql Stored Procedures
Are you using stored procedures directly (through a SqlCommand) or through LINQ to SQL? LINQ to SQL supports using stored procs for all its database access. You might want to look at …
