LINQ, Hashtables, Performance Options

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Smith

    LINQ, Hashtables, Performance Options

    Hello people,

    I have a performance query regarding LINQ that I would like some opinions.

    Currently we have a business logic framework that is used in n-tier
    applications. We read data from a database using a data reader and use this
    information to populate a set of business objects.

    Our business data is identified by a GUID so we create hashtables for
    collections of business objects with the GUID as the key and the business
    object itself as the object.

    The data manipulation we do uses lots of lookups from these hashtables,
    which is simple and really fast because of the hashing. We want to start
    using LINQ but we can't find a way of manually piping the data into a
    hashtable.

    So the question is, is there a way of getting the LINQ data into a hashtable
    or is there another way of achieveing the same speed of lookup via LINQ
    functionality?

    Cheers

    JS


Working...