mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-24 04:53:45 +08:00
Modifying Demo
This commit is contained in:
26
Src/Asp.Net/SqlServerTest/UserTestCases/Cases/UnitTime.cs
Normal file
26
Src/Asp.Net/SqlServerTest/UserTestCases/Cases/UnitTime.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OrmTest
|
||||
{
|
||||
public class UnitTime
|
||||
{
|
||||
public static void Init()
|
||||
{
|
||||
var db = NewUnitTest.Db;
|
||||
var xx=db.Queryable<Test>().Where(it => (it.a == DateTime.Now && it.a == DateTime.Now) || (it.a == DateTime.Now && it.a == DateTime.Now)).ToSql();
|
||||
foreach (var item in xx.Value)
|
||||
{
|
||||
Console.WriteLine(item.DbType);
|
||||
}
|
||||
}
|
||||
public class Test
|
||||
{
|
||||
[SqlSugar.SugarColumn(SqlParameterDbType =System.Data.DbType.Date)]
|
||||
public DateTime a { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user