|
Realm Xamarin
Realm for Xamarin
|
Iterable collection of one kind of RealmObject resulting from Realm.All or from a LINQ query expression. More...
Inherits IQueryable< T >.
Public Member Functions | |
| int | Count () |
| Count all objects if created by Realm.All of the parameterised type, faster than a search. More... | |
| IEnumerator< T > | GetEnumerator () |
Standard method from interface IEnumerable allows the RealmResults to be used in a foreach. More... | |
Iterable collection of one kind of RealmObject resulting from Realm.All or from a LINQ query expression.
| T | Type of the RealmObject which is being returned. |
| int Count | ( | ) |
Count all objects if created by Realm.All of the parameterised type, faster than a search.
Resolves to this method instead of the static extension Count<T>(this IEnumerable<T>).
| IEnumerator<T> GetEnumerator | ( | ) |
Standard method from interface IEnumerable allows the RealmResults to be used in a foreach.