You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have finished using an application domain, unload it using the <xref:System.AppDomain.Unload%2A?displayProperty=nameWithType> method. The **Unload** method gracefully shuts down the specified application domain. During the unloading process, no new threads can access the application domain, and all application domain–specific data structures are freed.
19
+
When you have finished using an application domain, unload it using the <xref:System.AppDomain.Unload%2A?displayProperty=nameWithType> method. The **Unload** method gracefully shuts down the specified application domain. During the unloading process, no new threads can access the application domain, and all application domain-specific data structures are freed.
20
20
21
21
Assemblies loaded into the application domain are removed and are no longer available. If an assembly in the application domain is domain-neutral, data for the assembly remains in memory until the entire process is shut down. There is no mechanism to unload a domain-neutral assembly other than shutting down the entire process. There are situations where the request to unload an application domain does not work and results in a <xref:System.CannotUnloadAppDomainException>.
Copy file name to clipboardExpand all lines: docs/framework/configure-apps/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ This article describes the syntax of configuration files and provides informatio
67
67
68
68
The name and location of the application configuration file depend on the app's host, which can be one of the following:
69
69
70
-
- Executable–hosted app.
70
+
- Executable-hosted app.
71
71
72
72
These apps have two configuration files: a source configuration file, which is modified by the developer during development, and an output file that's distributed with the app.
The following LINQ to SQL-supported methods, operators, and properties are available to use in LINQ to SQL queries. When a method, operator or property is unsupported, LINQ to SQL cannot translate the member for execution on the SQL Server. You may use these members in your code, however, they must be evaluated before the query is translated to Transact-SQL or after the results have been retrieved from the database.
10
-
11
-
## Supported System.DateTime Members
12
-
13
-
Once mapped in the object model or external mapping file, LINQ to SQL allows you to call the following <xref:System.DateTime?displayProperty=nameWithType> members inside LINQ to SQL queries.
The following LINQ to SQL-supported methods, operators, and properties are available to use in LINQ to SQL queries. When a method, operator or property is unsupported, LINQ to SQL cannot translate the member for execution on the SQL Server. You may use these members in your code, however, they must be evaluated before the query is translated to Transact-SQL or after the results have been retrieved from the database.
10
+
11
+
## Supported System.DateTime Members
12
+
13
+
Once mapped in the object model or external mapping file, LINQ to SQL allows you to call the following <xref:System.DateTime?displayProperty=nameWithType> members inside LINQ to SQL queries.
When it is recognized, it is translated into a direct call to the SQL Server `DATEDIFF` function, as follows:
61
+
62
+
`DATEDIFF({DatePart}, @dateTime1, @dateTime2)`
63
+
64
+
## SQLMethods Date and Time Methods
65
65
66
66
In addition to the methods offered by the <xref:System.DateTime> structure, LINQ to SQL offers the following methods from the <xref:System.Data.Linq.SqlClient.SqlMethods?displayProperty=nameWithType> class for working with date and time:
67
67
@@ -74,7 +74,7 @@ The following LINQ to SQL-supported methods, operators, and properties are avail
0 commit comments