File tree 1 file changed +4
-4
lines changed
src/JsonApiDotNetCore/Resources/Annotations
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
+ using System . Reflection ;
2
3
using JetBrains . Annotations ;
3
4
using JsonApiDotNetCore . Configuration ;
4
- using JsonApiDotNetCore . Services ;
5
+ using Microsoft . Extensions . DependencyInjection ;
5
6
6
7
namespace JsonApiDotNetCore . Resources . Annotations
7
8
{
8
9
/// <summary>
9
10
/// When put on a resource class, marks that resource as being hosted in a NoSQL database.
10
- /// The <see cref="NoSqlServiceCollectionExtensions.AddNoSqlResourceServices" /> will
11
- /// register a <see cref="NoSqlResourceService{TResource,TId}" /> for each resource
12
- /// having this attribute.
13
11
/// </summary>
12
+ /// <seealso cref="NoSqlServiceCollectionExtensions.AddNoSqlResourceServices(IServiceCollection)"/>
13
+ /// <seealso cref="NoSqlServiceCollectionExtensions.AddNoSqlResourceServices(IServiceCollection, Assembly)"/>
14
14
[ PublicAPI ]
15
15
[ AttributeUsage ( AttributeTargets . Class | AttributeTargets . Struct | AttributeTargets . Interface ) ]
16
16
public class NoSqlResourceAttribute : Attribute
You can’t perform that action at this time.
0 commit comments