- 增加 StringLength/MaxLength 对 byte[] 的支持;

This commit is contained in:
28810
2020-06-23 14:48:06 +08:00
parent 4ddf4c01a6
commit 73eb3c8b21
12 changed files with 239 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ using Newtonsoft.Json;
using Oracle.ManagedDataAccess.Client;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using Xunit;
@@ -101,6 +102,7 @@ namespace FreeSql.Tests.Oracle
class TS_BLB01
{
public Guid Id { get; set; }
[MaxLength(-1)]
public byte[] Data { get; set; }
}
[Fact]