mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 15:18:00 +08:00
93 lines
2.7 KiB
C#
93 lines
2.7 KiB
C#
![]() |
using System;
|
|||
|
using System.Linq;
|
|||
|
using Infrastructure;
|
|||
|
using NUnit.Framework;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
namespace OpenAuth.Repository.Test
|
|||
|
{
|
|||
|
class TestDynamicLinq : TestBase
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void GenerateFilter()
|
|||
|
{
|
|||
|
var dbcontext = _autofacServiceProvider.GetService<OpenAuthDBContext>();
|
|||
|
var json = @"
|
|||
|
{
|
|||
|
""Operation"": ""and"",
|
|||
|
""Filters"": [{
|
|||
|
""Key"": ""Name"",
|
|||
|
""Contrast"": ""=="",
|
|||
|
""Value"": ""admin""
|
|||
|
|
|||
|
},
|
|||
|
{
|
|||
|
""Key"": ""Name"",
|
|||
|
""Contrast"": ""=="",
|
|||
|
""Value"": ""admin""
|
|||
|
}
|
|||
|
],
|
|||
|
""Children"": [{
|
|||
|
""Operation"": ""or"",
|
|||
|
""Filters"": [{
|
|||
|
""Key"": ""Name"",
|
|||
|
""Contrast"": ""=="",
|
|||
|
""Value"": ""admin""
|
|||
|
},
|
|||
|
{
|
|||
|
""Key"": ""Name"",
|
|||
|
""Contrast"": ""=="",
|
|||
|
""Value"": ""admin""
|
|||
|
}
|
|||
|
],
|
|||
|
""Children"": [
|
|||
|
|
|||
|
|
|||
|
]
|
|||
|
}
|
|||
|
|
|||
|
]
|
|||
|
}
|
|||
|
";
|
|||
|
|
|||
|
var query = dbcontext.Users.GenerateFilter("c",json);
|
|||
|
Console.WriteLine(query.Expression.ToString());
|
|||
|
|
|||
|
Console.WriteLine(JsonHelper.Instance.Serialize(query.ToList()));
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void TestDynamic()
|
|||
|
{
|
|||
|
FilterGroup sub = new FilterGroup
|
|||
|
{
|
|||
|
Operation = "or"
|
|||
|
};
|
|||
|
sub.Filters = new[]
|
|||
|
{
|
|||
|
new Filter {Key = "Name", Value = "name", Contrast = "=="},
|
|||
|
new Filter {Key = "Sex", Value = "10", Contrast = "=="}
|
|||
|
};
|
|||
|
|
|||
|
FilterGroup filterGroup = new FilterGroup
|
|||
|
{
|
|||
|
Operation = "and"
|
|||
|
};
|
|||
|
filterGroup.Filters = new[]
|
|||
|
{
|
|||
|
new Filter {Key = "Account", Value = "name", Contrast = "=="},
|
|||
|
new Filter {Key = "Password", Value = "10", Contrast = "=="}
|
|||
|
};
|
|||
|
|
|||
|
filterGroup.Children = new[]
|
|||
|
{
|
|||
|
sub
|
|||
|
};
|
|||
|
|
|||
|
var dbcontext = _autofacServiceProvider.GetService<OpenAuthDBContext>();
|
|||
|
|
|||
|
var query = dbcontext.Users.GenerateFilter("c",JsonHelper.Instance.Serialize(filterGroup));
|
|||
|
Console.WriteLine(query.Expression.ToString());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|