teh*_*ian 9 c# mysql entity-framework visual-studio-2013
我在使用MySQL数据库的 C#模型第一个项目中使用EntityFramework 6 . 一切都很好,我可以毫无问题地生成我的数据库.
然后我使用设计器修改了我的.edmx文件,这里开始出现我遇到的问题.
这是现在的.edmx文件,它在设计器中的样子:
EDMX文件:http://pastebin.com/Xer9UyNR
以下是设计师视图的链接:http: //i.stack.imgur.com/Vcv9W.png
à ArmoireOutils.App.OnNavigateMessageHandler(OnNavigateMessage message) dans c:\Users\JB\Desktop\CodingFrance\ArmoireOutils\ArmoireOutils\App.xaml.cs:line 101System.FormatException: String was not recognized as a valid Boolean..
à System.Boolean.Parse(String value)
à System.String.System.IConvertible.ToBoolean(IFormatProvider provider)
à System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
à MySql.Data.Entity.EFMySqlDataReader.ChangeType(Object sourceValue, Type targetType)
à MySql.Data.Entity.EFMySqlDataReader.GetValue(Int32 ordinal)
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper.ErrorHandlingValueReader`1.GetUntypedValueDefault(DbDataReader reader, Int32 ordinal)
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper.ErrorHandlingValueReader`1.GetValue(DbDataReader reader, Int32 ordinal)
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper.GetPropertyValueWithErrorHandling[TProperty](Int32 ordinal, String propertyName, String typeName)
à lambda_method(Closure , Shaper )
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper.HandleEntityAppendOnly[TEntity](Func`2 constructEntityDelegate, EntityKey entityKey, EntitySet entitySet)
à lambda_method(Closure , Shaper )
à System.Data.Entity.Core.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper`1.RowNestedResultEnumerator.MaterializeRow()
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper`1.RowNestedResultEnumerator.MoveNext()
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper`1.ObjectQueryNestedEnumerator.TryReadToNextElement()
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper`1.ObjectQueryNestedEnumerator.ReadElement()
à System.Data.Entity.Core.Common.Internal.Materialization.Shaper`1.ObjectQueryNestedEnumerator.MoveNext()
à System.Data.Entity.Internal.LazyEnumerator`1.MoveNext()
à System.Linq.Enumerable.SingleOrDefault[TSource](IEnumerable`1 source)
à System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.<GetElementFunction>b__2[TResult](IEnumerable`1 sequence)
à System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.ExecuteSingle[TResult](IEnumerable`1 query, Expression queryRoot)
à System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.System.Linq.IQueryProvider.Execute[TResult](Expression expression)
à System.Data.Entity.Internal.Linq.DbQueryProvider.Execute[TResult](Expression expression)
à System.Linq.Queryable.SingleOrDefault[TSource](IQueryable`1 source)
à ArmoireOutils.Services.DataService.GetCupboardByGuid(String guid) dans c:\Users\JB\Desktop\CodingFrance\ArmoireOutils\ArmoireOutils\Services\DataService.cs:line 202
这是我的GetCupboardByGUID方法:
public Cupboard GetCupboardByGuid(String guid)
{
using (var context = new ArmoireOutilsEntities())
{
var cupboard = (from a in context.Cupboards
where a.GUID.Equals(guid)
select a)
.Include("ResidentTools")
.Include("Tools")
.Include("Users") //If I remove this, .SingleOrDefault() works fine.
.SingleOrDefault(); //Throw FormatException when getting the User.Active value from the database.
if (cupboard != null)
cupboard.RefreshLists();
return cupboard;
}
}
Run Code Online (Sandbox Code Playgroud)
这是我的.edmx tt生成的User类:
public partial class User
{
public User()
{
this.Tools = new ObservableCollection<Tool>();
this.Cupboards = new ObservableCollection<Cupboard>();
this.Active = true;
}
public int Id { get; set; }
public short Type { get; set; }
public string Firstname { get; set; }
public string LastName { get; set; }
public string Login { get; set; }
public short Gender { get; set; }
public short LangId { get; set; }
public string Photo { get; set; }
public System.DateTime CreationDate { get; set; }
public Nullable<System.DateTime> ModificationDate { get; set; }
public Nullable<System.DateTime> LastConnection { get; set; }
public Nullable<System.DateTime> DisableDate { get; set; }
public bool Active { get; set; }
public virtual Lang Lang { get; set; }
public virtual IList<Tool> Tools { get; set; }
public virtual IList<Cupboard> Cupboards { get; set; }
}
Run Code Online (Sandbox Code Playgroud)
所以我想EF被遍历从DB谁在所有用户cupboarduser(表一连接用户到橱柜的很多一对多的关系),当它涉及到设定的活动值的第一个用户,它从DB获取1获取它作为String首先然后尝试使用System.Boolean.Parse将该字符串解析为布尔值但是thaat方法不支持像"1"这样的数字用于true(DB中的字段是tinyint (1)).
那么为什么EF无法理解它是一个tinyint所以他不能在System.Boolean.Parse中使用它?
我试图从数据库重新生成整个.edmx文件=>相同的异常
我试图从头开始重新生成整个.edmx文件=>相同的异常
我不明白为什么因为我没有修改User模型所以Active字段已经存在并且工作得很好.
对不起,很长的帖子,并提前感谢.
最好的问候,平民
小智 14
配置特定实体的数据类型:
modelBuilder.Entity<User>()
.Property(p => p.Active)
.HasColumnType("bit");
Run Code Online (Sandbox Code Playgroud)
或一般:
modelBuilder.Properties()
.Where(x => x.PropertyType == typeof(bool))
.Configure(x => x.HasColumnType("bit"));
Run Code Online (Sandbox Code Playgroud)