using FreeSql.DataAnnotations; using Newtonsoft.Json.Linq; using Npgsql; using Npgsql.LegacyPostgis; using NpgsqlTypes; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.NetworkInformation; using Xunit; namespace FreeSql.Tests.PostgreSQLExpression { public class OtherTest { ISelect select => g.pgsql.Select(); public OtherTest() { NpgsqlConnection.GlobalTypeMapper.UseLegacyPostgis(); } [Fact] public void Array() { IEnumerable testlinqlist = new List(new[] { 1, 2, 3 }); var testlinq = select.Where(a => testlinqlist.Contains(a.testFieldInt)).ToList(); var sql1 = select.Where(a => a.testFieldIntArray.Contains(1)).ToList(); var sql2 = select.Where(a => a.testFieldIntArray.Contains(1) == false).ToList(); //in not in var sql111 = select.Where(a => new[] { 1, 2, 3 }.Contains(a.testFieldInt)).ToList(); var sql112 = select.Where(a => new[] { 1, 2, 3 }.Contains(a.testFieldInt) == false).ToList(); var sql113 = select.Where(a => !new[] { 1, 2, 3 }.Contains(a.testFieldInt)).ToList(); var inarray = new[] { 1, 2, 3 }; var sql1111 = select.Where(a => inarray.Contains(a.testFieldInt)).ToSql(); var sql1122 = select.Where(a => inarray.Contains(a.testFieldInt) == false).ToSql(); var sql1133 = select.Where(a => !inarray.Contains(a.testFieldInt)).ToSql(); //in not in var sql11111 = select.Where(a => new List() { 1, 2, 3 }.Contains(a.testFieldInt)).ToList(); var sql11222 = select.Where(a => new List() { 1, 2, 3 }.Contains(a.testFieldInt) == false).ToList(); var sql11333 = select.Where(a => !new List() { 1, 2, 3 }.Contains(a.testFieldInt)).ToList(); var sql11111a = select.Where(a => new List(new[] { 1, 2, 3 }).Contains(a.testFieldInt)).ToList(); var sql11222b = select.Where(a => new List(new[] { 1, 2, 3 }).Contains(a.testFieldInt) == false).ToList(); var sql11333c = select.Where(a => !new List(new[] { 1, 2, 3 }).Contains(a.testFieldInt)).ToList(); var inarray2 = new List() { 1, 2, 3 }; var sql111111 = select.Where(a => inarray.Contains(a.testFieldInt)).ToList(); var sql112222 = select.Where(a => inarray.Contains(a.testFieldInt) == false).ToList(); var sql113333 = select.Where(a => !inarray.Contains(a.testFieldInt)).ToList(); var sql1111112 = select.ToList(a => inarray); var sql1111113 = select.ToList(a => a.testFieldIntArray); var sql3 = select.Where(a => a.testFieldIntArray.Any()).ToList(); var sql4 = select.Where(a => a.testFieldIntArray.Any() == false).ToList(); var sql5 = select.ToList(a => a.testFieldIntArray.Concat(new[] { 1, 2, 3 })); var sql6 = select.Where(a => a.testFieldIntArray.GetLength(1) > 0).ToList(); var sql7 = select.Where(a => a.testFieldIntArray.GetLongLength(1) > 0).ToList(); var sql8 = select.Where(a => a.testFieldIntArray.Length > 0).ToList(); var sql9 = select.Where(a => a.testFieldIntArray.Count() > 0).ToList(); } [Fact] public void Jsonb() { var sql1 = select.Where(a => a.testFieldJToken.Contains(JToken.Parse("{a:1}"))).ToList(); var sql2 = select.Where(a => a.testFieldJToken.Contains(JToken.Parse("{a:1}")) == false).ToList(); var sql111 = select.Where(a => a.testFieldJToken.Contains("{a:1}")).ToList(); var sql222 = select.Where(a => a.testFieldJToken.Contains("{a:1}") == false).ToList(); var sql3 = select.Where(a => a.testFieldJObject.ContainsKey("a")).ToList(); var sql4 = select.Where(a => a.testFieldJObject.ContainsKey("a") == false).ToList(); var sql5 = select.Where(a => a.testFieldJArray.Contains(1)).ToList(); var sql6 = select.Where(a => a.testFieldJArray.Contains(1) == false).ToList(); var sql555 = select.Where(a => a.testFieldJArray.Contains(1)).ToList(); var sql666 = select.Where(a => a.testFieldJArray.Contains(1) == false).ToList(); //var sql7 = select.Where(a => a.testFieldJToken.Any()).ToList(); //var sql8 = select.Where(a => a.testFieldJToken.Any() == false).ToList(); var sql9 = select.Where(a => a.testFieldJArray.Any()).ToList(); var sql10 = select.Where(a => a.testFieldJArray.Any() == false).ToList(); //var sql11 = select.ToList(a => a.testFieldJToken.Concat(JToken.Parse("{a:1}"))); //var sql12 = select.ToList(a => a.testFieldJObject.Concat(JToken.Parse("{a:1}"))); //var sql13 = select.ToList(a => a.testFieldJArray.Concat(JToken.Parse("{a:1}"))); //var sql14 = select.Where(a => a.testFieldJToken.Count() > 0).ToList(); //var sql15 = select.Where(a => a.testFieldJObject.Count > 0).ToList(); var sql16 = select.Where(a => a.testFieldJArray.Count() > 0).ToList(); var sql17 = select.Where(a => a.testFieldJArray.LongCount() > 0).ToList(); var sql18 = select.Where(a => a.testFieldJArray.Count > 0).ToList(); } [Fact] public void HStore() { var sql1 = select.Where(a => a.testFieldHStore.ContainsKey("a")).ToList(); var sql2 = select.Where(a => a.testFieldHStore.ContainsKey("a") == false).ToList(); } [Table(Name = "tb_alltype")] class TableAllType { [Column(IsIdentity = true, IsPrimary = true)] public int Id { get; set; } public bool testFieldBool { get; set; } public sbyte testFieldSByte { get; set; } public short testFieldShort { get; set; } public int testFieldInt { get; set; } public long testFieldLong { get; set; } public byte testFieldByte { get; set; } public ushort testFieldUShort { get; set; } public uint testFieldUInt { get; set; } public ulong testFieldULong { get; set; } public double testFieldDouble { get; set; } public float testFieldFloat { get; set; } public decimal testFieldDecimal { get; set; } public TimeSpan testFieldTimeSpan { get; set; } public DateTime testFieldDateTime { get; set; } public byte[] testFieldBytes { get; set; } public string testFieldString { get; set; } public Guid testFieldGuid { get; set; } public NpgsqlPoint testFieldNpgsqlPoint { get; set; } public NpgsqlLine testFieldNpgsqlLine { get; set; } public NpgsqlLSeg testFieldNpgsqlLSeg { get; set; } public NpgsqlBox testFieldNpgsqlBox { get; set; } public NpgsqlPath testFieldNpgsqlPath { get; set; } public NpgsqlPolygon testFieldNpgsqlPolygon { get; set; } public NpgsqlCircle testFieldNpgsqlCircle { get; set; } public (IPAddress Address, int Subnet) testFieldCidr { get; set; } public NpgsqlRange testFieldInt4range { get; set; } public NpgsqlRange testFieldInt8range { get; set; } public NpgsqlRange testFieldNumrange { get; set; } public NpgsqlRange testFieldTsrange { get; set; } public bool? testFieldBoolNullable { get; set; } public sbyte? testFieldSByteNullable { get; set; } public short? testFieldShortNullable { get; set; } public int? testFieldIntNullable { get; set; } public long? testFielLongNullable { get; set; } public byte? testFieldByteNullable { get; set; } public ushort? testFieldUShortNullable { get; set; } public uint? testFieldUIntNullable { get; set; } public ulong? testFieldULongNullable { get; set; } public double? testFieldDoubleNullable { get; set; } public float? testFieldFloatNullable { get; set; } public decimal? testFieldDecimalNullable { get; set; } public TimeSpan? testFieldTimeSpanNullable { get; set; } public DateTime? testFieldDateTimeNullable { get; set; } public Guid? testFieldGuidNullable { get; set; } public NpgsqlPoint? testFieldNpgsqlPointNullable { get; set; } public NpgsqlLine? testFieldNpgsqlLineNullable { get; set; } public NpgsqlLSeg? testFieldNpgsqlLSegNullable { get; set; } public NpgsqlBox? testFieldNpgsqlBoxNullable { get; set; } public NpgsqlPath? testFieldNpgsqlPathNullable { get; set; } public NpgsqlPolygon? testFieldNpgsqlPolygonNullable { get; set; } public NpgsqlCircle? testFieldNpgsqlCircleNullable { get; set; } public (IPAddress Address, int Subnet)? testFieldCidrNullable { get; set; } public NpgsqlRange? testFieldInt4rangeNullable { get; set; } public NpgsqlRange? testFieldInt8rangeNullable { get; set; } public NpgsqlRange? testFieldNumrangeNullable { get; set; } public NpgsqlRange? testFieldTsrangeNullable { get; set; } public BitArray testFieldBitArray { get; set; } public IPAddress testFieldInet { get; set; } public PhysicalAddress testFieldMacaddr { get; set; } public JToken testFieldJToken { get; set; } public JObject testFieldJObject { get; set; } public JArray testFieldJArray { get; set; } public Dictionary testFieldHStore { get; set; } public PostgisPoint testFieldPostgisPoint { get; set; } public PostgisLineString testFieldPostgisLineString { get; set; } public PostgisPolygon testFieldPostgisPolygon { get; set; } public PostgisMultiPoint testFieldPostgisMultiPoint { get; set; } public PostgisMultiLineString testFieldPostgisPostgisMultiLineString { get; set; } public PostgisMultiPolygon testFieldPostgisPostgisMultiPolygon { get; set; } public PostgisGeometry testFieldPostgisGeometry { get; set; } public PostgisGeometryCollection testFieldPostgisGeometryCollection { get; set; } public TableAllTypeEnumType1 testFieldEnum1 { get; set; } public TableAllTypeEnumType1? testFieldEnum1Nullable { get; set; } public TableAllTypeEnumType2 testFieldEnum2 { get; set; } public TableAllTypeEnumType2? testFieldEnum2Nullable { get; set; } /* array */ public bool[] testFieldBoolArray { get; set; } public sbyte[] testFieldSByteArray { get; set; } public short[] testFieldShortArray { get; set; } public int[] testFieldIntArray { get; set; } public long[] testFieldLongArray { get; set; } public byte[] testFieldByteArray { get; set; } public ushort[] testFieldUShortArray { get; set; } public uint[] testFieldUIntArray { get; set; } public ulong[] testFieldULongArray { get; set; } public double[] testFieldDoubleArray { get; set; } public float[] testFieldFloatArray { get; set; } public decimal[] testFieldDecimalArray { get; set; } public TimeSpan[] testFieldTimeSpanArray { get; set; } public DateTime[] testFieldDateTimeArray { get; set; } public byte[][] testFieldBytesArray { get; set; } public string[] testFieldStringArray { get; set; } public Guid[] testFieldGuidArray { get; set; } public NpgsqlPoint[] testFieldNpgsqlPointArray { get; set; } public NpgsqlLine[] testFieldNpgsqlLineArray { get; set; } public NpgsqlLSeg[] testFieldNpgsqlLSegArray { get; set; } public NpgsqlBox[] testFieldNpgsqlBoxArray { get; set; } public NpgsqlPath[] testFieldNpgsqlPathArray { get; set; } public NpgsqlPolygon[] testFieldNpgsqlPolygonArray { get; set; } public NpgsqlCircle[] testFieldNpgsqlCircleArray { get; set; } public (IPAddress Address, int Subnet)[] testFieldCidrArray { get; set; } public NpgsqlRange[] testFieldInt4rangeArray { get; set; } public NpgsqlRange[] testFieldInt8rangeArray { get; set; } public NpgsqlRange[] testFieldNumrangeArray { get; set; } public NpgsqlRange[] testFieldTsrangeArray { get; set; } public bool?[] testFieldBoolArrayNullable { get; set; } public sbyte?[] testFieldSByteArrayNullable { get; set; } public short?[] testFieldShortArrayNullable { get; set; } public int?[] testFieldIntArrayNullable { get; set; } public long?[] testFielLongArrayNullable { get; set; } public byte?[] testFieldByteArrayNullable { get; set; } public ushort?[] testFieldUShortArrayNullable { get; set; } public uint?[] testFieldUIntArrayNullable { get; set; } public ulong?[] testFieldULongArrayNullable { get; set; } public double?[] testFieldDoubleArrayNullable { get; set; } public float?[] testFieldFloatArrayNullable { get; set; } public decimal?[] testFieldDecimalArrayNullable { get; set; } public TimeSpan?[] testFieldTimeSpanArrayNullable { get; set; } public DateTime?[] testFieldDateTimeArrayNullable { get; set; } public Guid?[] testFieldGuidArrayNullable { get; set; } public NpgsqlPoint?[] testFieldNpgsqlPointArrayNullable { get; set; } public NpgsqlLine?[] testFieldNpgsqlLineArrayNullable { get; set; } public NpgsqlLSeg?[] testFieldNpgsqlLSegArrayNullable { get; set; } public NpgsqlBox?[] testFieldNpgsqlBoxArrayNullable { get; set; } public NpgsqlPath?[] testFieldNpgsqlPathArrayNullable { get; set; } public NpgsqlPolygon?[] testFieldNpgsqlPolygonArrayNullable { get; set; } public NpgsqlCircle?[] testFieldNpgsqlCircleArrayNullable { get; set; } public (IPAddress Address, int Subnet)?[] testFieldCidrArrayNullable { get; set; } public NpgsqlRange?[] testFieldInt4rangeArrayNullable { get; set; } public NpgsqlRange?[] testFieldInt8rangeArrayNullable { get; set; } public NpgsqlRange?[] testFieldNumrangeArrayNullable { get; set; } public NpgsqlRange?[] testFieldTsrangeArrayNullable { get; set; } public BitArray[] testFieldBitArrayArray { get; set; } public IPAddress[] testFieldInetArray { get; set; } public PhysicalAddress[] testFieldMacaddrArray { get; set; } public JToken[] testFieldJTokenArray { get; set; } public JObject[] testFieldJObjectArray { get; set; } public JArray[] testFieldJArrayArray { get; set; } public Dictionary[] testFieldHStoreArray { get; set; } public PostgisPoint[] testFieldPostgisPointArray { get; set; } public PostgisLineString[] testFieldPostgisLineStringArray { get; set; } public PostgisPolygon[] testFieldPostgisPolygonArray { get; set; } public PostgisMultiPoint[] testFieldPostgisMultiPointArray { get; set; } public PostgisMultiLineString[] testFieldPostgisPostgisMultiLineStringArray { get; set; } public PostgisMultiPolygon[] testFieldPostgisPostgisMultiPolygonArray { get; set; } public PostgisGeometry[] testFieldPostgisGeometryArray { get; set; } public PostgisGeometryCollection[] testFieldPostgisGeometryCollectionArray { get; set; } public TableAllTypeEnumType1[] testFieldEnum1Array { get; set; } public TableAllTypeEnumType1?[] testFieldEnum1ArrayNullable { get; set; } public TableAllTypeEnumType2[] testFieldEnum2Array { get; set; } public TableAllTypeEnumType2?[] testFieldEnum2ArrayNullable { get; set; } } public enum TableAllTypeEnumType1 { e1, e2, e3, e5 } [Flags] public enum TableAllTypeEnumType2 { f1, f2, f3 } } }