MetadataWorkspaceExtensions.ToStoreType 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
将某一 EDM 类型转换为 SQL 类型,并且考虑方面。 请注意,在从 DbProviderManifest (FixedLength, Unicode) 获取某些方面时已考虑这些方面
命名空间: Microsoft.Data.Entity.Design.DatabaseGeneration
程序集: Microsoft.Data.Entity.Design.DatabaseGeneration(在 Microsoft.Data.Entity.Design.DatabaseGeneration.dll 中)
语法
声明
<ExtensionAttribute> _
<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")> _
Public Shared Function ToStoreType ( _
property As EdmProperty _
) As String
用法
Dim property As EdmProperty
Dim returnValue As String
returnValue = property.ToStoreType()
[SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static string ToStoreType(
this EdmProperty property
)
[ExtensionAttribute]
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1011:ConsiderPassingBaseTypesAsParameters")]
public:
static String^ ToStoreType(
EdmProperty^ property
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")>]
static member ToStoreType :
property:EdmProperty -> string
public static function ToStoreType(
property : EdmProperty
) : String
参数
- property
类型:System.Data.Entity.Core.Metadata.Edm.EdmProperty
从其确定 EDM 类型的属性。
返回值
类型:System.String
相应 SQL 类型。
使用说明
在 Visual Basic 和 C# 中,可以在 EdmProperty 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。