SqlSugar/Src/Asp.Net/SqlServerTest/Demos/8_JoinSql.cs

103 lines
4.4 KiB
C#
Raw Normal View History

2017-06-04 10:12:53 +08:00
using OrmTest.Demo;
using OrmTest.Models;
2017-08-25 13:18:43 +08:00
using SqlSugar;
2017-06-04 10:12:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest.Demo
{
/// <summary>
/// Secure string operations
/// </summary>
public class JoinSql : DemoBase
{
public static void Init()
2017-06-04 10:20:52 +08:00
{
Where();
OrderBy();
2017-08-25 13:18:43 +08:00
SelectMerge();
ConditionalModel();
2017-11-01 13:48:28 +08:00
JoinExp();
}
private static void JoinExp()
{
var db = GetInstance();
var exp= Expressionable.Create<Student>()
.OrIF(1==1,it => it.Id == 11)
.And(it=>it.Id==1)
.AndIF(2==2,it => it.Id == 1)
.Or(it =>it.Name == "a1").ToExpression();
var list=db.Queryable<Student>().Where(exp).ToList();
2017-06-04 10:20:52 +08:00
}
private static void ConditionalModel()
{
var db = GetInstance();
2018-01-29 17:15:04 +08:00
List<IConditionalModel> conModels = new List<IConditionalModel>();
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.Equal, FieldValue = "1" });//id=1
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.Like, FieldValue = "1" });// id like '%1%'
2017-11-09 10:26:03 +08:00
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.IsNullOrEmpty });
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.In,FieldValue="1,2,3" });
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.NotIn, FieldValue = "1,2,3" });
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.NoEqual, FieldValue = "1,2,3" });
2018-01-29 17:15:04 +08:00
conModels.Add(new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.IsNot,FieldValue=null});// id is not null
conModels.Add(new ConditionalCollections() { ConditionalList=new List<KeyValuePair<WhereType, SqlSugar.ConditionalModel>>()// (id=1 or id=2 and id=1)
{
2018-01-29 17:21:07 +08:00
new KeyValuePair<WhereType, ConditionalModel>( WhereType.And ,new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.Equal, FieldValue = "1" }),
new KeyValuePair<WhereType, ConditionalModel> (WhereType.Or,new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.Equal, FieldValue = "2" }),
2018-01-29 17:15:04 +08:00
new KeyValuePair<WhereType, ConditionalModel> ( WhereType.And,new ConditionalModel() { FieldName = "id", ConditionalType = ConditionalType.Equal, FieldValue = "2" })
}
});
var student = db.Queryable<Student>().Where(conModels).ToList();
}
2017-08-25 13:18:43 +08:00
private static void SelectMerge()
{
var db = GetInstance();
//page join
var pageJoin = db.Queryable<Student, School>((st, sc) => new object[] {
JoinType.Left,st.SchoolId==sc.Id
})
2017-12-26 14:16:54 +08:00
.Where(st => st.Id==1)
.Where(st => st.Id==2)
2017-08-25 13:18:43 +08:00
.Select((st, sc) => new { id = st.Id, name = sc.Name })
2017-08-25 15:15:13 +08:00
.MergeTable().Where(XXX => XXX.id == 1).OrderBy("name asc").ToList();// Prefix, is, not, necessary, and take the columns in select
2017-06-04 10:20:52 +08:00
2017-08-25 13:18:43 +08:00
}
2017-06-04 10:20:52 +08:00
private static void Where()
{
var db = GetInstance();
//Parameterized processing
2017-06-04 10:24:07 +08:00
string value = "'jack';drop table Student";
var list = db.Queryable<Student>().Where("name=@name", new { name = value }).ToList();
//Nothing happened
2017-06-04 10:20:52 +08:00
}
private static void OrderBy()
2017-06-04 10:12:53 +08:00
{
var db = GetInstance();
//propertyName is valid
string propertyName = "Id";
2017-09-06 16:37:25 +08:00
string dbColumnName = db.EntityMaintenance.GetDbColumnName<Student>(propertyName);
2017-06-04 10:12:53 +08:00
var list = db.Queryable<Student>().OrderBy(dbColumnName).ToList();
//propertyName is invalid
try
{
propertyName = "Id'";
2017-09-06 16:37:25 +08:00
dbColumnName = db.EntityMaintenance.GetDbColumnName<Student>(propertyName);
2017-06-04 10:12:53 +08:00
var list2 = db.Queryable<Student>().OrderBy(dbColumnName).ToList();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}