EF Code第一个查询返回0

时间:2016-03-31 12:33:14

标签: c# database entity-framework code-first

我尝试从数据库中的表中获取所有行,但列表返回空。 屏幕截图是否在数据库中: https://gyazo.com/37957807543227e4c6b2df9d30b1b970

///Database connectie
var dbconn = new FilmsContext();


///Alles uit de database halen
List<Films> list = dbconn.Films.ToList();

数据库设置

public class FilmsContext : DbContext
    {

        public FilmsContext() : base("FilmsContext")
        {
        }

        public DbSet<Films> Films { get; set; }
    }

表格设置

public class Films
    {
        public int Id { get; set; }
        public string name { get; set; }
        public string beschrijving { get; set; }
        public string afbeelding { get; set; }
        public string auteur { get; set; }
        public int sterren { get; set; }
        public string websitelink { get; set; }
        public DateTime datum { 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>

1 个答案:

答案 0 :(得分:0)

如果您正在使用SQL CE,则可能是在bin \ debug文件夹中创建了数据库文件,但您指向的是其他位置。

如果您使用DropCreateDatabaseAlways,则尤其如此。