top button
Flag Notify
Site Registration

How to implement Data Virtualization?

+1 vote
251 views
How to implement Data Virtualization?
posted Jan 22, 2015 by Saravanan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Data Virtualization is a technique you use to expose a subset of the data from a large data collection so that only the actual data you need is fetched into memory. To implement data virtualization, you take your data collection which could contain any number of rows – even a million rows or more! – and you create a custom class for your virtualized data collection that implements IList and acts as a facade to the underlying data collection.
IList has a great many methods, but fortunately the only methods you have to implement are:

public int Count
     T IList<T>.this[int index]

Note: This interface is an abstraction that allows list types to be used with through a single reference type. With it, we can create a single method to receive an int[] or a List.

answer Jan 23, 2015 by Jdk
Similar Questions
+1 vote

I need to know how to achieve the following thigs??
1. Passing a string value using formatted string.
2. Passing multiple parameters.
3. Passing complex object

...