[]
Wraps an IEnumerable into a data collection.
[Obsolete("Use AsDataCollection instead", true)]
public static IDataCollection<T> ToDataCollection<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.
[Obsolete("Use AsDataCollection instead", true)]
public static IDataCollection<T> ToDataCollection<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. |