Search Results

1
vote

Has anyone run performance benchmarks comparing LINQ

We had a horrible experience with ADO.NET Entities performance using LINQ: the inheritance slows down things immensely. A small database (say, 100 records or so) with 20 classes of which most were …
0
votes

What’s the insert performance like for the WPF Toolkit DataGrid?

WPF Toolkit DataGrid should do 'Virtualization', which is what in Microsoft speak is 'reusing WPF objects' (see for example …
1
vote

Does JIT performance suffer due to writeable pages?

The performance increase is not because of whether the pages are read only or not. The advantage is that read only pages can be shared between processes, so you use less memory which means less swa …