是的,我在这里有另一个奇怪的问题:)
我尝试实现透明的 Redis 数据访问层。
我将急切地加载 N*1 和 1*1 关系,懒惰地加载 N*N 和 1*N 关系。
public class User
{
public long CityId {get;set;}
[EagerLoading]
[IgnoreDataMember]
public City {get;set;}
}
public class City
{
public ICollection<long> UserIds {get;set;}
[LazyLoading]
[IgnoreDataMember]
public ICollection<User> Users{get;set;}
}
CUD 操作(创建、更新、删除)没有问题。我可以存储完整的对象层次结构。
但我需要非类型化的 Get 方法来检索对象。
public class GenericRedisRepository
{
public object Get(string objectUrn)
{
using (var r = RedisManager.GetReadOnlyClient())
{
var pocoObject=r.GetObject(objectUrn); // I COULD NOT FIND THIS METHOD
foreach (var property in ReflectionHelper.GetEagerLoadingProperties(pocoObject))
{
// Fixup relations and load all EagerLoading properties recursively
}
}
}
}
任何想法或替代方式..