Class SQLStorageProvider
Inheritance
System.Object
SQLStorageProvider
Assembly: Simplic.Framework.Extension.dll
Syntax
public class SQLStorageProvider : object, IStorageProvider
Constructors
|
Improve this Doc
View Source
SQLStorageProvider()
Declaration
public SQLStorageProvider()
Properties
|
Improve this Doc
View Source
TenantId
Declaration
public Guid? TenantId { get; set; }
Property Value
Type |
Description |
System.Nullable<Guid> |
|
Methods
|
Improve this Doc
View Source
Delete(Guid)
Declaration
public void Delete(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
|
Improve this Doc
View Source
Read(Guid)
Declaration
public byte[] Read(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
Returns
Type |
Description |
System.Byte[] |
|
|
Improve this Doc
View Source
Write(Guid, Byte[])
Declaration
public void Write(Guid id, byte[] data)
Parameters
Type |
Name |
Description |
Guid |
id |
|
System.Byte[] |
data |
|
Implements