如何将数据类型属性设置为smalldatetime

Kim*_*jan 3 c# ado.net code-first entity-framework-4 c#-4.0

有办法吗?以下不起作用:

var customer = constructor.Entity<Customer>();
customer.Property(c => c.Date).DataType("smalldatetime");
Run Code Online (Sandbox Code Playgroud)

Kim*_*jan 5

customer.Property(c => c.Date).HasStoreType("smalldatetime");
Run Code Online (Sandbox Code Playgroud)