EF 5.0 (Database-First Model) not working on one table

你。 提交于 2019-12-11 18:02:17

问题


I have a database table called TBLFIRM. I am using acc database-first model. EF prepares the sql wrong. What can be wrong on this object?

Thank you

My Syntax, a very simple call:

TBLFIRM d = VT.TBLFIRMs.FirstOrDefault(p => p.ID > 0);

The SQL syntax that EF 5 prepares

SELECT TOP (1) 
[Extent1].[ID] AS [ID], 
[Extent1].[DISTID] AS [DISTID], 
[Extent1].[SESSIONKEY] AS [SESSIONKEY], 
[Extent1].[NAME] AS [NAME], 
[Extent1].[PHONE] AS [PHONE], 
[Extent1].[EMAIL] AS [EMAIL], 
[Extent1].[CREATEUSER] AS [CREATEUSER], 
[Extent1].[CREATEDATE] AS [CREATEDATE], 
[Extent1].[UPDATEUSER] AS [UPDATEUSER], 
[Extent1].[UPDATEDATE] AS [UPDATEDATE], 
[Extent1].[AUTHORIZEDUSERNAME] AS [AUTHORIZEDUSERNAME], 
[Extent1].[AUTHORIZEDUSEREMAIL] AS [AUTHORIZEDUSEREMAIL], 
[Extent1].[AUTHORIZEDUSERPHONE] AS [AUTHORIZEDUSERPHONE], 
[Extent1].[SENDEMAIL] AS [SENDEMAIL], 
[Extent1].[REPLYEMAIL] AS [REPLYEMAIL], 
[Extent1].[ACTIVE] AS [ACTIVE], 
[Extent1].[CANLOGIN] AS [CANLOGIN], 
[Extent1].[INTERNALNAME] AS [INTERNALNAME], 
[Extent1].[TBLDISTRIBUTOR_ID] AS [TBLDISTRIBUTOR_ID]
FROM [dbo].[TBLFIRMs] AS [Extent1]
WHERE [Extent1].[ID] > 0

Context Class

public DbSet<TBLFIRM> TBLFIRMs { get; set; }

TBLFirm Class

 public partial class TBLFIRM
    {
        public TBLFIRM()
        {
            this.TBLFIRMSETTINGS = new HashSet<TBLFIRMSETTING>();
            this.TBLFIRMSMTPs = new HashSet<TBLFIRMSMTP>();
            this.TBLMAILFIRMMATCHes = new HashSet<TBLMAILFIRMMATCH>();
            this.TBLMAILGROUPs = new HashSet<TBLMAILGROUP>();
            this.TBLMAILTEMPLATEs = new HashSet<TBLMAILTEMPLATE>();
            this.TBLSCHEDULEs = new HashSet<TBLSCHEDULE>();
            this.TBLUSERGROUPs = new HashSet<TBLUSERGROUP>();
            this.TBLUSERS = new HashSet<TBLUSER>();
        }

        public int ID { get; set; }
        public int DISTID { get; set; }
        public string SESSIONKEY { get; set; }
        public string NAME { get; set; }
        public string PHONE { get; set; }
        public string EMAIL { get; set; }
        public string CREATEUSER { get; set; }
        public Nullable<System.DateTime> CREATEDATE { get; set; }
        public string UPDATEUSER { get; set; }
        public Nullable<System.DateTime> UPDATEDATE { get; set; }
        public string AUTHORIZEDUSERNAME { get; set; }
        public string AUTHORIZEDUSEREMAIL { get; set; }
        public string AUTHORIZEDUSERPHONE { get; set; }
        public string SENDEMAIL { get; set; }
        public string REPLYEMAIL { get; set; }
        public Nullable<bool> ACTIVE { get; set; }
        public Nullable<bool> CANLOGIN { get; set; }
        public string INTERNALNAME { get; set; }

        public virtual TBLDISTRIBUTOR TBLDISTRIBUTOR { get; set; }
        public virtual ICollection<TBLFIRMSETTING> TBLFIRMSETTINGS { get; set; }
        public virtual ICollection<TBLFIRMSMTP> TBLFIRMSMTPs { get; set; }
        public virtual ICollection<TBLMAILFIRMMATCH> TBLMAILFIRMMATCHes { get; set; }
        public virtual ICollection<TBLMAILGROUP> TBLMAILGROUPs { get; set; }
        public virtual ICollection<TBLMAILTEMPLATE> TBLMAILTEMPLATEs { get; set; }
        public virtual ICollection<TBLSCHEDULE> TBLSCHEDULEs { get; set; }
        public virtual ICollection<TBLUSERGROUP> TBLUSERGROUPs { get; set; }
        public virtual ICollection<TBLUSER> TBLUSERS { get; set; }
    }

回答1:


After a deeper research I was able to find and fix the problem thanks to a reply by BRian Rogers @ Code First vs. Database First.

If you are approaching Database or Model First the the connection string must have a metadata, otherwise EF interprets this as Code First approach.

As I was calling the library holding EF objects from a web site, the web.config's connectionstring was a plaing database connection.

<add name="EmmContext" connectionString="Data Source=.;Initial Catalog=GPMM;Persist Security Info=True;User ID=********;Pwd=******" providerName="System.Data.SqlClient"/>

After changing it to

<add name="EmmContext" connectionString="metadata=res://*/DAL.DBModel.csdl|res://*/DAL.DBModel.ssdl|res://*/DAL.DBModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=.;initial catalog=GPMM;persist security info=True;user id=*******;password=********;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>

it worked like a charm.

Just wanted to share this particular experience. Thank you Brian Rogers! :-)



来源:https://stackoverflow.com/questions/18674079/ef-5-0-database-first-model-not-working-on-one-table

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!