Class DataSeedContext
Inheritance
object
DataSeedContext
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Data
Assembly: Volo.Abp.Data.dll
Syntax
public class DataSeedContext
Constructors
DataSeedContext(Guid?)
Declaration
public DataSeedContext(Guid? tenantId = null)
Parameters
Type | Name | Description |
---|---|---|
System.Guid? | tenantId |
Properties
this[string]
Declaration
public object? this[string name] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
string | name |
Property Value
Type | Description |
---|---|
object |
Properties
Declaration
public Dictionary<string, object?> Properties { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<TKey, TValue><string, object> |
TenantId
Declaration
public Guid? TenantId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
Methods
WithProperty(string, object?)
Declaration
public virtual DataSeedContext WithProperty(string key, object? value)
Parameters
Type | Name | Description |
---|---|---|
string | key | |
object | value |
Returns
Type | Description |
---|---|
DataSeedContext |