MarkB wrote:
Thanks for your reply. how about datasets vs llblgen? (performance-wise that is)
As datasets are untyped buckets of object[] array containing datatables, the fetch speed of llblgen pro is a little behind fetching plain datasets. However, you then can't work with entities, you don't have hierarchical saves and auto-sql generation nor prefetch paths for efficient fetching of graphs.
And for low level database cursors, do you mean the sql ce resultset by that? Or do you mean through a native API with unmanaged code or P/Invoke?
The sql ce resultset indeed (or what's it called... ) which allows you to browse through the records of a table without overhead. The .net version is a tiny wrapper around the native code one, so it's pretty fast.