Skip to content

Commit 3df1141

Browse files
author
Samuel Abraham
committed
v10.1.0
1 parent 7458751 commit 3df1141

3 files changed

Lines changed: 10 additions & 26 deletions

File tree

.github/FUNDING.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# These are supported funding model platforms
22

3-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
3+
#github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: sam987883
5-
open_collective: # Replace with a single Open Collective username
6-
ko_fi: # Replace with a single Ko-fi username
7-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: # Replace with a single Liberapay username
10-
issuehunt: # Replace with a single IssueHunt username
11-
otechie: # Replace with a single Otechie username
5+
#open_collective: # Replace with a single Open Collective username
6+
#ko_fi: # Replace with a single Ko-fi username
7+
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
#liberapay: # Replace with a single Liberapay username
10+
#issuehunt: # Replace with a single IssueHunt username
11+
#otechie: # Replace with a single Otechie username
1212
custom: ['https://www.paypal.com/paypalme/sam987883']

src/TypeCache.GraphQL/Extensions/SchemaExtensions.SqlApi.cs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,6 @@ public void AddSqlApiEndpoints<T>(IDataSource dataSource, string table, string?
331331
/// <list type="table">
332332
/// <item><term>Mutation: call{Procedure}</term> Calls the stored procedure and returns its results.</item>
333333
/// </list>
334-
/// <i>Requires call to:</i>
335-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
336334
/// </summary>
337335
/// <exception cref="ArgumentNullException"/>
338336
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -376,8 +374,6 @@ public FieldType AddSqlApiCallProcedureEndpoint<T>(IDataSource dataSource, strin
376374
/// <list type="table">
377375
/// <item><term>Mutation: delete{Table}Data</term> Deletes records passed in based on primary key value(s).</item>
378376
/// </list>
379-
/// <i>Requires call to:</i>
380-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
381377
/// </summary>
382378
/// <exception cref="ArgumentNullException"/>
383379
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -411,8 +407,6 @@ public FieldType AddSqlApiDeleteDataEndpoint<T>(IDataSource dataSource, string t
411407
/// <list type="table">
412408
/// <item><term>Mutation: Delete{Table}</term> Deletes records based on a <c>WHERE</c> clause.</item>
413409
/// </list>
414-
/// <i>Requires call to:</i>
415-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
416410
/// </summary>
417411
/// <exception cref="ArgumentNullException"/>
418412
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -447,8 +441,6 @@ public FieldType AddSqlApiDeleteEndpoint<T>(IDataSource dataSource, string table
447441
/// <list type="table">
448442
/// <item><term>Mutation: insert{Table}Data</term> Inserts a batch of records.</item>
449443
/// </list>
450-
/// <i>Requires call to:</i>
451-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
452444
/// </summary>
453445
/// <exception cref="ArgumentNullException"/>
454446
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -483,8 +475,6 @@ public FieldType AddSqlApiInsertDataEndpoint<T>(IDataSource dataSource, string t
483475
/// <list type="table">
484476
/// <item><term>Mutation: insert{Table}Data</term> Inserts a batch of records.</item>
485477
/// </list>
486-
/// <i>Requires call to:</i>
487-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
488478
/// </summary>
489479
/// <exception cref="ArgumentNullException"/>
490480
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -539,8 +529,6 @@ public FieldType AddSqlApiInsertEndpoint<T>(IDataSource dataSource, string table
539529
/// <list type="table">
540530
/// <item><term>Query: select{Table}</term> Selects records based on a <c>WHERE</c> clause.</item>
541531
/// </list>
542-
/// <i>Requires call to:</i>
543-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
544532
/// </summary>
545533
/// <exception cref="ArgumentNullException"/>
546534
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -594,8 +582,6 @@ public FieldType AddSqlApiSelectEndpoint<T>(IDataSource dataSource, string table
594582
/// <list type="table">
595583
/// <item><term>Mutation: update{Table}Data</term> Updates a batch of records.</item>
596584
/// </list>
597-
/// <i>Requires call to:</i>
598-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
599585
/// </summary>
600586
/// <exception cref="ArgumentNullException"/>
601587
/// <exception cref="ArgumentOutOfRangeException"/>
@@ -629,8 +615,6 @@ public FieldType AddSqlApiUpdateDataEndpoint<T>(IDataSource dataSource, string t
629615
/// <list type="table">
630616
/// <item><term>Mutation: update{Table}</term> Updates records based on a WHERE clause.</item>
631617
/// </list>
632-
/// <i>Requires call to:</i>
633-
/// <code><see cref="TypeCache.Data.Extensions.ServiceCollectionExtensions.AddSqlResultsRule(IServiceCollection)"/></code>
634618
/// </summary>
635619
/// <exception cref="ArgumentNullException"/>
636620
/// <exception cref="ArgumentOutOfRangeException"/>

src/TypeCache/Reflection/Extensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ public static (MethodSet<MethodEntity>, Type[]) operator |(MethodSet<MethodEntit
567567
where T : notnull
568568
{
569569
/// <summary>
570-
/// Finds matching method with <paramref name="arguments"/>.
570+
/// Prepare instance method for being invoked.
571571
/// </summary>
572572
public static (MethodSet<MethodEntity>, T) operator |(MethodSet<MethodEntity> methods, T instance)
573573
=> (methods, instance);
@@ -596,7 +596,7 @@ public static (MethodSet<MethodEntity>, T) operator |(MethodSet<MethodEntity> me
596596
where T : notnull
597597
{
598598
/// <summary>
599-
/// Finds matching generic method overload with <paramref name="arguments"/>.
599+
/// Prepare generic instance method for being invoked.
600600
/// </summary>
601601
public static (MethodSet<MethodEntity>, Type[], T) operator |((MethodSet<MethodEntity> Methods, Type[] GenericTypeArguments) _, T instance)
602602
=> (_.Methods, _.GenericTypeArguments, instance);

0 commit comments

Comments
 (0)