Microsoft.EntityFrameworkCore.Abstractions.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.EntityFrameworkCore.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute">
  8. <summary>
  9. Maps a static CLR method to a database function so that the CLR method may be used in LINQ queries.
  10. By convention uses the .NET method name as name of the database function and the default schema.
  11. </summary>
  12. </member>
  13. <member name="M:Microsoft.EntityFrameworkCore.DbFunctionAttribute.#ctor">
  14. <summary>
  15. Initializes a new instance of the <see cref="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute" /> class.
  16. </summary>
  17. </member>
  18. <member name="M:Microsoft.EntityFrameworkCore.DbFunctionAttribute.#ctor(System.String,System.String)">
  19. <summary>
  20. Initializes a new instance of the <see cref="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute" /> class.
  21. </summary>
  22. <param name="name">The name of the function in the database.</param>
  23. <param name="schema">The schema of the function in the database.</param>
  24. </member>
  25. <member name="P:Microsoft.EntityFrameworkCore.DbFunctionAttribute.Name">
  26. <summary>
  27. The name of the function in the database.
  28. </summary>
  29. </member>
  30. <member name="P:Microsoft.EntityFrameworkCore.DbFunctionAttribute.Schema">
  31. <summary>
  32. The schema of the function in the database.
  33. </summary>
  34. </member>
  35. <member name="T:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader">
  36. <summary>
  37. <para>
  38. A service that can be injected into entities to give them the capability
  39. of loading navigation properties automatically the first time they are accessed.
  40. </para>
  41. <para>
  42. The service lifetime is 'ServiceLifetime.Transient'. This means that each
  43. entity instance will use its own instance of this service.
  44. The implementation may depend on other services registered with any lifetime.
  45. The implementation does not need to be thread-safe.
  46. </para>
  47. </summary>
  48. </member>
  49. <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.SetLoaded(System.Object,System.String,System.Boolean)">
  50. <summary>
  51. Sets the given navigation as known to be completely loaded or known to be
  52. no longer completely loaded.
  53. </summary>
  54. <param name="entity"> The entity on which the navigation property is located. </param>
  55. <param name="navigationName"> The navigation property name. </param>
  56. <param name="loaded"> Determines whether the navigation is set as loaded or not. </param>
  57. </member>
  58. <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.Load(System.Object,System.String)">
  59. <summary>
  60. Loads a navigation property if it has not already been loaded.
  61. </summary>
  62. <param name="entity"> The entity on which the navigation property is located. </param>
  63. <param name="navigationName"> The navigation property name. </param>
  64. </member>
  65. <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.LoadAsync(System.Object,System.Threading.CancellationToken,System.String)">
  66. <summary>
  67. Loads a navigation property if it has not already been loaded.
  68. </summary>
  69. <param name="entity"> The entity on which the navigation property is located. </param>
  70. <param name="cancellationToken"> A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete. </param>
  71. <param name="navigationName"> The navigation property name. </param>
  72. <returns> A task that represents the asynchronous operation. </returns>
  73. </member>
  74. <member name="T:Microsoft.EntityFrameworkCore.Infrastructure.LazyLoaderExtensions">
  75. <summary>
  76. Extension methods for the <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader" /> service that make it more
  77. convenient to use from entity classes.
  78. </summary>
  79. </member>
  80. <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.LazyLoaderExtensions.Load``1(Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader,System.Object,``0@,System.String)">
  81. <summary>
  82. Loads a navigation property if it has not already been loaded.
  83. </summary>
  84. <typeparam name="TRelated"> The type of the navigation property. </typeparam>
  85. <param name="loader">The loader instance, which may be <c>null</c>.</param>
  86. <param name="entity"> The entity on which the navigation property is located. </param>
  87. <param name="navigationField"> A reference to the backing field for the navigation. </param>
  88. <param name="navigationName"> The navigation property name. </param>
  89. <returns>
  90. The loaded navigation property value, or the navigation property value unchanged if the loader is <c>null</c>.
  91. </returns>
  92. </member>
  93. <member name="T:Microsoft.EntityFrameworkCore.OwnedAttribute">
  94. <summary>
  95. Marks a type as owned. All references to this type will be configured as owned entity types.
  96. </summary>
  97. </member>
  98. <member name="T:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings">
  99. <summary>
  100. <para>
  101. String resources used in EF exceptions, etc.
  102. </para>
  103. <para>
  104. These strings are exposed publicly for use by database providers and extensions.
  105. It is unusual for application code to need these strings.
  106. </para>
  107. </summary>
  108. </member>
  109. <member name="M:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings.ArgumentIsEmpty(System.Object)">
  110. <summary>
  111. The string argument '{argumentName}' cannot be empty.
  112. </summary>
  113. </member>
  114. <member name="M:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings.CollectionArgumentIsEmpty(System.Object)">
  115. <summary>
  116. The collection argument '{argumentName}' must contain at least one element.
  117. </summary>
  118. </member>
  119. <member name="T:Microsoft.EntityFrameworkCore.Query.NotParameterizedAttribute">
  120. <summary>
  121. Signals that custom LINQ operator parameter should not be parameterized during query compilation.
  122. </summary>
  123. </member>
  124. </members>
  125. </doc>