我使用Entity Framework 6 + Code First + Oracle 12c的Visual Studio解决方案存在问题。我不确定它是否配置正确,或者我错过了一些简单的东西。
我试图寻找一个示例项目作为开始,但无法找到 - 谷歌搜索,stackoverflow等。
是否有某个简约的示例项目,它会在运行时尝试创建数据库?
更新:为了确保,我不是要求任何人为我创建样本。在我做之前,我想确保没有现有样本(这对我来说很奇怪,但很可能就是这样)。
答案 0 :(得分:13)
我设法创建了一个工作样本。发现一些(不是那样)记录的奇怪行为导致运行时错误。
以下是完整的示例来源:https://drive.google.com/file/d/0By3P-kPOnpiGRnc0OG5ZTDl6eGs
我使用Visual Studio 2013创建了示例。使用nuget来拉
重要的部分是
我省略了
using System.Data.Entity;
public class Program
{
private static void Main(string[] args)
{
string connStr =
"Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=***server***)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=***SERVICE***)));Persist Security Info=True;User ID=***User***;Password=***password***";
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<Context>());
//Database.SetInitializer(new DropCreateDatabaseAlways<Context>());
Context context = new Context(connStr);
TestEntity te = new TestEntity();
te.Id = 1;
te.Name = "Test1";
context.TestEntities.Add(te);
context.SaveChanges();
}
}
using System.Data.Entity;
public class Context : DbContext
{
public Context(string nameOrConnectionString)
: base(nameOrConnectionString)
{
}
public virtual DbSet<TestEntity> TestEntities { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.HasDefaultSchema("OTS_TEST_EF");
modelBuilder.Entity<TestEntity>()
.Property(e => e.Id)
.HasPrecision(9, 2);
base.OnModelCreating(modelBuilder);
}
}
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("TestEntity")]
public class TestEntity
{
[Column(TypeName = "number")]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public decimal Id { get; set; }
[StringLength(100)]
public string Name { get; set; }
}
<?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"/>
<section name="oracle.manageddataaccess.client"
type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<entityFramework>
<!--<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>-->
<providers>
<!--<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>-->
<provider invariantName="Oracle.ManagedDataAccess.Client"
type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="Oracle.ManagedDataAccess.Client"/>
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver"
type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
</DbProviderFactories>
</system.data>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<publisherPolicy apply="no"/>
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral"/>
<bindingRedirect oldVersion="4.121.0.0 - 4.65535.65535.65535" newVersion="4.121.2.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<!--<oracle.manageddataaccess.client>
<version number="*">
<dataSources>
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=INFOTEST))) "/>
</dataSources>
</version>
</oracle.manageddataaccess.client>-->
<!--<connectionStrings>
<add name="OracleDbContext" providerName="Oracle.ManagedDataAccess.Client"
connectionString="Data Source=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = INFOTEST)));Persist Security Info=True;User ID=user;Password=password"/>
</connectionStrings>-->
</configuration>
我在途中发现了一件奇怪的事: 添加以下任何TypeNames将导致&#34; Sequence不包含匹配元素&#34;错误。
/*[Column(TypeName = "numeric")]*/
/*[Column(TypeName = "number(18,0)")]*/
/*[Column(TypeName = "number(18,2)")]*/
用刻度0表示精度
modelBuilder.Entity<TestEntity>().Property(e => e.Id).HasPrecision(9, 0);
将导致
指定的架构无效。错误:
(7,12):错误2019:指定的成员映射无效。类型&#39; Edm.Decimal [Nullable = False,DefaultValue =,Precision = 9,Scale = 0]&#39;会员&#39; Id&#39;在类型&#39; EF6_Oracle12c_CF.TestEntity&#39;与OracleEFProvider.number
不兼容省略
modelBuilder.HasDefaultSchema("OTS_TEST_EF");
行将导致
ORA-01918:用户不存在
我也遇到了
ORA-00955:名称已被现有对象
使用或
无法检查模型兼容性,因为数据库不包含模型元数据。只能检查使用Code First或Code First Migrations创建的数据库的模型兼容性。
我设法通过启用
来克服这些问题Database.SetInitializer(new DropCreateDatabaseAlways<Context>());
行,而不是DropCreateDatabaseIfModelChanges模式。
答案 1 :(得分:3)
如果您仍然感兴趣,这是一个很好的样本。它有11克。
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/dotnet/CodeFirst/index.html
答案 2 :(得分:0)
Here's a link to a sample from Oracle on using EF Code First, Migration and Visual Studio.
Oracle Learning Library on EF Code First and Code First Migration
I'm actually almost finishing up a project that uses VS, 12c and EF and the link was a good starting point. There was no particular issue about 12c that I saw.
答案 3 :(得分:0)
我在github上有一个测试项目,我曾经尝试过在Oracle上进行EF6迁移的示例。对我有用的代码(以编程方式执行所有挂起的迁移)就在这里。我的用例可能很常见 - 我需要能够将我的应用程序部署到各种环境和数据中心,让它使用环境的应用程序数据库副本做“正确的事情”。
重要的一点是
//Arrange
Configuration config = new Configuration();
DbMigrator migrator = new DbMigrator(config);
Console.WriteLine("Migrating...");
foreach (string s in migrator.GetPendingMigrations())
{
//Act
Console.WriteLine("Applying migration {0}", s);
Action act = () => migrator.Update(s);
//Assert
act.ShouldNotThrow();
}
答案 4 :(得分:0)
我花了几天的时间解决这个问题...终于解决了:
该表不存在。我检查了很多次并刷新,但问题不在表本身中,而是在序列中。 Oracle中的每个表都创建一个序列对象以增加id。因此,如果删除表,请确保也删除序列,否则再次迁移时,它将为您提供 ORA-00955:名称已被现有对象使用。
因此,真正的问题出在顺序上,而不是表格上。但是您无法创建新序列,因为它已经存在。删除表时不会删除它,应该手动删除它。
希望对您有所帮助。