mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-12-28 02:25:48 +08:00
AggregateRootRepository
This commit is contained in:
24
FreeSql.Repository/AggregateRootModel.cs
Normal file
24
FreeSql.Repository/AggregateRootModel.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using FreeSql;
|
||||
using FreeSql.Extensions.EntityUtil;
|
||||
using FreeSql.Internal;
|
||||
using FreeSql.Internal.CommonProvider;
|
||||
using FreeSql.Internal.Model;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSql.Internal.Model
|
||||
{
|
||||
public class AggregateRootTrackingChangeInfo
|
||||
{
|
||||
public List<NativeTuple<Type, object>> InsertLog { get; } = new List<NativeTuple<Type, object>>();
|
||||
public List<NativeTuple<Type, object, object, List<string>>> UpdateLog { get; } = new List<NativeTuple<Type, object, object, List<string>>>();
|
||||
public List<NativeTuple<Type, object[]>> DeleteLog { get; } = new List<NativeTuple<Type, object[]>>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user