[]
Wraps an IEnumerable into a data collection.
public static IDataCollection<T> AsDataCollection<T>(this IEnumerable source) where T : class?
| Type | Name | Description |
|---|---|---|
| IEnumerable | source | The source of the data collection. |
| Type | Description |
|---|---|
| IDataCollection<T> |
| Name | Description |
|---|---|
| T | The type of the data collection. |
Wraps an IEnumerable into a data collection.
public static IDataCollection<T> AsDataCollection<T>(this IEnumerable<T> source) where T : class?
| Type | Name | Description |
|---|---|---|
| IEnumerable<T> | source | The source of the data collection. |
| Type | Description |
|---|---|
| IDataCollection<T> |
| Name | Description |
|---|---|
| T | The type of the data collection. |