1
0

Refactoring

This commit is contained in:
2021-10-22 21:05:37 +02:00
commit ca9de13c9e
43 changed files with 5145 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Options for the database provider.
/// </summary>
public class DatabaseProviderOptions
{
/// <summary>
/// Gets or sets the absolute path to the database directory.
/// </summary>
public string AbsoluteBasePath { get; set; }
}
}