We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f7eed commit cce00dbCopy full SHA for cce00db
Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs
@@ -196,7 +196,7 @@ public TypeInfo Find(string fullName)
196
/// <see cref="IEnumerable{T}"/> of <see cref="TypeInfo"/> instance that are descendants of specified <paramref name="item"/>.
197
/// </returns>
198
/// <exception cref="ArgumentNullException">When <paramref name="item"/> is <see langword="null"/>.</exception>
199
- [Obsolete("Use TypeInfo.Descendants/.RecursiveDescendants")]
+ [Obsolete("Use TypeInfo.DirectDescendants/.AllDescendants")]
200
public IEnumerable<TypeInfo> FindDescendants(TypeInfo item, bool recursive) =>
201
recursive ? item.AllDescendants : item.DirectDescendants;
202
0 commit comments