From 2f0fe710bf011d4f0051339bfbfebb597bff1a50 Mon Sep 17 00:00:00 2001 From: zs <zhousong@weben-smart.com> Date: 周三, 06 11月 2024 13:35:02 +0800 Subject: [PATCH] 切换数据库为mysql --- DataCapture_MA/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.xml | 125 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 125 insertions(+), 0 deletions(-) diff --git a/DataCapture_MA/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.xml b/DataCapture_MA/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.xml new file mode 100644 index 0000000..31c46ce --- /dev/null +++ b/DataCapture_MA/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.xml @@ -0,0 +1,125 @@ +<?xml version="1.0"?> +<doc> + <assembly> + <name>Microsoft.EntityFrameworkCore.Abstractions</name> + </assembly> + <members> + <member name="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute"> + <summary> + Maps a static CLR method to a database function so that the CLR method may be used in LINQ queries. + By convention uses the .NET method name as name of the database function and the default schema. + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.DbFunctionAttribute.#ctor"> + <summary> + Initializes a new instance of the <see cref="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute" /> class. + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.DbFunctionAttribute.#ctor(System.String,System.String)"> + <summary> + Initializes a new instance of the <see cref="T:Microsoft.EntityFrameworkCore.DbFunctionAttribute" /> class. + </summary> + <param name="name">The name of the function in the database.</param> + <param name="schema">The schema of the function in the database.</param> + </member> + <member name="P:Microsoft.EntityFrameworkCore.DbFunctionAttribute.Name"> + <summary> + The name of the function in the database. + </summary> + </member> + <member name="P:Microsoft.EntityFrameworkCore.DbFunctionAttribute.Schema"> + <summary> + The schema of the function in the database. + </summary> + </member> + <member name="T:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader"> + <summary> + <para> + A service that can be injected into entities to give them the capability + of loading navigation properties automatically the first time they are accessed. + </para> + <para> + The service lifetime is 'ServiceLifetime.Transient'. This means that each + entity instance will use its own instance of this service. + The implementation may depend on other services registered with any lifetime. + The implementation does not need to be thread-safe. + </para> + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.SetLoaded(System.Object,System.String,System.Boolean)"> + <summary> + Sets the given navigation as known to be completely loaded or known to be + no longer completely loaded. + </summary> + <param name="entity"> The entity on which the navigation property is located. </param> + <param name="navigationName"> The navigation property name. </param> + <param name="loaded"> Determines whether the navigation is set as loaded or not. </param> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.Load(System.Object,System.String)"> + <summary> + Loads a navigation property if it has not already been loaded. + </summary> + <param name="entity"> The entity on which the navigation property is located. </param> + <param name="navigationName"> The navigation property name. </param> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader.LoadAsync(System.Object,System.Threading.CancellationToken,System.String)"> + <summary> + Loads a navigation property if it has not already been loaded. + </summary> + <param name="entity"> The entity on which the navigation property is located. </param> + <param name="cancellationToken"> A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for the task to complete. </param> + <param name="navigationName"> The navigation property name. </param> + <returns> A task that represents the asynchronous operation. </returns> + </member> + <member name="T:Microsoft.EntityFrameworkCore.Infrastructure.LazyLoaderExtensions"> + <summary> + Extension methods for the <see cref="T:Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader" /> service that make it more + convenient to use from entity classes. + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Infrastructure.LazyLoaderExtensions.Load``1(Microsoft.EntityFrameworkCore.Infrastructure.ILazyLoader,System.Object,``0@,System.String)"> + <summary> + Loads a navigation property if it has not already been loaded. + </summary> + <typeparam name="TRelated"> The type of the navigation property. </typeparam> + <param name="loader">The loader instance, which may be <c>null</c>.</param> + <param name="entity"> The entity on which the navigation property is located. </param> + <param name="navigationField"> A reference to the backing field for the navigation. </param> + <param name="navigationName"> The navigation property name. </param> + <returns> + The loaded navigation property value, or the navigation property value unchanged if the loader is <c>null</c>. + </returns> + </member> + <member name="T:Microsoft.EntityFrameworkCore.OwnedAttribute"> + <summary> + Marks a type as owned. All references to this type will be configured as owned entity types. + </summary> + </member> + <member name="T:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings"> + <summary> + <para> + String resources used in EF exceptions, etc. + </para> + <para> + These strings are exposed publicly for use by database providers and extensions. + It is unusual for application code to need these strings. + </para> + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings.ArgumentIsEmpty(System.Object)"> + <summary> + The string argument '{argumentName}' cannot be empty. + </summary> + </member> + <member name="M:Microsoft.EntityFrameworkCore.Diagnostics.AbstractionsStrings.CollectionArgumentIsEmpty(System.Object)"> + <summary> + The collection argument '{argumentName}' must contain at least one element. + </summary> + </member> + <member name="T:Microsoft.EntityFrameworkCore.Query.NotParameterizedAttribute"> + <summary> + Signals that custom LINQ operator parameter should not be parameterized during query compilation. + </summary> + </member> + </members> +</doc> -- Gitblit v1.9.3