PropertyBuilder<TProperty>.HasPrecision 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
HasPrecision(Int32) |
設定此屬性的有效位數。 |
HasPrecision(Int32, Int32) |
設定此屬性的有效位數和小數位數。 |
HasPrecision(Int32)
設定此屬性的有效位數。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasPrecision (int precision);
override this.HasPrecision : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
Public Overridable Function HasPrecision (precision As Integer) As PropertyBuilder(Of TProperty)
參數
- precision
- Int32
此屬性的有效位數。
傳回
相同的產生器實例,以便鏈結多個組態呼叫。
適用於
HasPrecision(Int32, Int32)
設定此屬性的有效位數和小數位數。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasPrecision (int precision, int scale);
override this.HasPrecision : int * int -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
Public Overridable Function HasPrecision (precision As Integer, scale As Integer) As PropertyBuilder(Of TProperty)
參數
- precision
- Int32
此屬性的有效位數。
- scale
- Int32
此屬性的小數位數。
傳回
相同的產生器實例,以便鏈結多個組態呼叫。