实体框架按类更改数据库的物理位置

本文关键字:位置 数据库 框架 实体 | 更新日期: 2023-09-27 18:28:23

我是实体框架的新手。我写了一个简单的代码优先数据库。如何按类更改database.mdf的物理位置。比方说,我在|DataDirectory|''App_Data''database.mdf中保存我的数据库。我使用的是windows窗体。这是DbContext

 class DatabaseContext : DbContext
{
    public DatabaseContext()
        : base("database")
    { }
    public DbSet<Login> Logins { get; set; }
    public DbSet<master> masters { get; set; }
    public DbSet<People> People { get; set; }
}

这是配置文件app.config

    <?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>`<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>`

谢谢你的时间,请帮忙。:)

实体框架按类更改数据库的物理位置

我只需要在数据库上下文中声明另一个构造函数,您可以在其中发送数据库的位置。

public DatabaseContext(string connection) : base(connection)  { }

请注意对基类构造函数base()的调用。根据EF规范,你可以通过

  • 与数据库的现有连接
  • .config中包含的连接字符串的名称
  • 连接字符串

希望这能有所帮助。