简体   繁体   中英

Allow Zero DateTime mysql connector web.config Entity Framework

I'm getting a MySqlConnectionException when i'm trying to connect retrieve data from my DBContext class because i have a date time entry line 0000-00-00 00:00:00 .

From what i understand i have to add a Allow Zero Datetime=true entry in my connection string, the one bellow.

<add name="A4LifeEntities" connectionString="metadata=res://*/A4LifeEntities.csdl|res://*/A4LifeEntities.ssdl|res://*/A4LifeEntities.msl;provider=MySql.Data.MySqlClient;provider connection string=&quot;server=localhost;password=pass;user id=userId;port=3330;Allow Zero Datetime=true; persist security info=True;database=aLife&quot;" providerName="System.Data.EntityClient"/></connectionStrings>

As you can see i have already added it, but am i doing something wrong ? Do i have to add it somewhere else in the string ? Because it's not working.

Thank you

Use Convert Zero Datetime=true; , it's different in that it returns DateTime.MinValue instead of a MySqlDateTime.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM