14 lines
319 B
C#
14 lines
319 B
C#
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; }
|
|
}
|
|
}
|