Skip to content
DocsTry Aspire
DocsTry

DacDeployOptionsAnnotation Methods

RecordMethods8 members
Represents a metadata annotation that specifies dacpac deployment options.
public record DacDeployOptionsAnnotation
{
public virtual DacDeployOptionsAnnotation <Clone>$()
{
// ...
}
}
public record DacDeployOptionsAnnotation
{
public void Deconstruct(
out string OptionsPath)
{
// ...
}
}
OptionsPathstring
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record DacDeployOptionsAnnotation
{
public override bool Equals(
object? obj)
{
// ...
}
}
objobject?The object to compare with the current object.
booltrue if the specified object is equal to the current object; otherwise, false.
Equals(DacDeployOptionsAnnotation?)Section titled Equals(DacDeployOptionsAnnotation?)virtualbool
Indicates whether the current object is equal to another object of the same type.
public record DacDeployOptionsAnnotation
{
public virtual bool Equals(
DacDeployOptionsAnnotation? other)
{
// ...
}
}
otherDacDeployOptionsAnnotation?An object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public record DacDeployOptionsAnnotation
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(DacDeployOptionsAnnotation?, DacDeployOptionsAnnotation?)Section titled op_Equality(DacDeployOptionsAnnotation?, DacDeployOptionsAnnotation?)staticbool
public record DacDeployOptionsAnnotation
{
public static bool operator ==(
DacDeployOptionsAnnotation? left,
DacDeployOptionsAnnotation? right)
{
// ...
}
}
op_Inequality(DacDeployOptionsAnnotation?, DacDeployOptionsAnnotation?)Section titled op_Inequality(DacDeployOptionsAnnotation?, DacDeployOptionsAnnotation?)staticbool
public record DacDeployOptionsAnnotation
{
public static bool operator !=(
DacDeployOptionsAnnotation? left,
DacDeployOptionsAnnotation? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record DacDeployOptionsAnnotation
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.