Daoting / dt

利用 C# + XAML 进行快速业务开发的跨平台框架(搬运工)
https://github.com/daoting/dt
54 stars 12 forks source link

CacheHandler.cs 33行编译不通过 #92

Closed sunl158 closed 1 year ago

sunl158 commented 1 year ago

Dt.Core\Base\Domain\Entity\CacheHandler.cs

public Task Cache(TEntity p_entity) where TEntity : Entity { Throw.IfNull(p_entity); 32行 string val = RpcKit.GetObjectString(p_entity); 33行 string id = p_entity.Str(_primaryKey);

        return Task.CompletedTask;
    }