mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
全面修改Id为Guid类型,为2.0版做准备
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
// <summary>多对多关系统一处理</summary>
|
||||
// ***********************************************************************
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
@@ -19,9 +20,9 @@ namespace OpenAuth.Domain.Interface
|
||||
{
|
||||
public interface IRelevanceRepository : IRepository<Relevance>
|
||||
{
|
||||
void DeleteBy(string key, params int[] firstIds);
|
||||
void DeleteBy(string key, ILookup<int, int> idMaps);
|
||||
void DeleteBy(string key, params Guid[] firstIds);
|
||||
void DeleteBy(string key, ILookup<Guid, Guid> idMaps);
|
||||
|
||||
void AddRelevance( string key, ILookup<int, int> idMaps);
|
||||
void AddRelevance( string key, ILookup<Guid, Guid> idMaps);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user