mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 10:42:52 +08:00
- 修复 IsNulable 特性不生效的 bug; #137
This commit is contained in:
parent
9f97d67cb2
commit
152d41025b
@ -165,9 +165,27 @@ namespace FreeSql.Tests
|
||||
public long? CreateUserId { get; set; }
|
||||
}
|
||||
|
||||
public class TestMySqlStringIsNullable
|
||||
{
|
||||
public Guid id { get; set; }
|
||||
public string varchar { get; set; }
|
||||
[Column(IsNullable = true)]
|
||||
public string varchar_null { get; set; }
|
||||
[Column(IsNullable = false)]
|
||||
public string varchar_notnull { get; set; }
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test02()
|
||||
{
|
||||
g.mysql.Select<TestMySqlStringIsNullable>();
|
||||
|
||||
var slsksd = g.mysql.Update<UserLike>().SetSource(new UserLike { Id = Guid.NewGuid(), CreateUserId = 1000, SubjectId = Guid.NewGuid() })
|
||||
.UpdateColumns(a => new
|
||||
{
|
||||
a.SubjectId
|
||||
}).NoneParameter().ToSql();
|
||||
|
||||
g.mysql.Aop.ParseExpression = (s, e) =>
|
||||
{
|
||||
if (e.Expression.NodeType == ExpressionType.Call)
|
||||
|
@ -114,7 +114,7 @@ namespace FreeSql.Internal
|
||||
else
|
||||
colattr.DbType = colattr.DbType.ToUpper();
|
||||
|
||||
if (tp != null && tp.Value.isnullable == null) colattr.IsNullable = tp.Value.dbtypeFull.Contains("NOT NULL") == false;
|
||||
if (colattr._IsNullable == null && tp != null && tp.Value.isnullable == null) colattr.IsNullable = tp.Value.dbtypeFull.Contains("NOT NULL") == false;
|
||||
if (colattr.DbType?.Contains("NOT NULL") == true) colattr.IsNullable = false;
|
||||
if (string.IsNullOrEmpty(colattr.Name)) colattr.Name = p.Name;
|
||||
if (common.CodeFirst.IsSyncStructureToLower) colattr.Name = colattr.Name.ToLower();
|
||||
|
Loading…
x
Reference in New Issue
Block a user