天天看點

VSCode開發WebApi EFCore的坑

問題:System.TypeLoadException: Method 'get_CoreOptions' in type 'Microsoft.EntityFrameworkCore.Internal.RelationalDatabaseFacadeDependencies' from assembly 'Microsoft.EntityFrameworkCore.Relational, Version=5.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' does not have an implementation.

解決:按異常提示,安裝對應的EntityFrameworkCore版本(Version=5.0.1.0)

問題:ORA-00933: SQL 指令未正确結束

解決:指定為Oracle 11版本即可。

optionsBuilder.UseOracle(connectionString, b => b.UseOracleSQLCompatibility("11"))

問題:ORA-00942 表或視圖不存

解決:Oracle對于表名大小寫敏感。在Entity的Table Attribute與Oracle的表名大小寫保持一緻。

[Table("PUB_EMPLOYEE")]