2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-10-31 07:51:36 +00:00

Pull Stream

This commit is contained in:
2025-10-30 12:45:29 +03:00
parent a63a9b5511
commit 746f12320e
25 changed files with 1637 additions and 704 deletions

View File

@@ -381,7 +381,7 @@ public static class Codec
ComposeInternal(object valueOrSource, Warehouse warehouse, DistributedConnection connection)
{
if (valueOrSource == null)
return new TDU(TDUIdentifier.Null);
return new TDU(TDUIdentifier.Null, null, 0);
var type = valueOrSource.GetType();
@@ -408,7 +408,7 @@ public static class Codec
valueOrSource = ((IUserType)valueOrSource).Get();
if (valueOrSource == null)
return new TDU(TDUIdentifier.Null);
return new TDU(TDUIdentifier.Null, null, 0);
type = valueOrSource.GetType();
@@ -484,7 +484,7 @@ public static class Codec
}
return new TDU(TDUIdentifier.Null);
return new TDU(TDUIdentifier.Null, null, 0);
}