asp.net-mvc – 如何在实体框架中为GUID设置NewId()

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何在实体框架中为GUID设置NewId()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建asp.net mvc4示例.在此我创建了ID列作为GUID在表格的datacontext.
  1. public class Sample
  2. {
  3. [required]
  4. public Guid ID { get; set; }
  5. [required]
  6. public string FirstName { get; set; }
  7. }

这是实体表

  1. CreateTable(
  2. "dbo.Samples",c => new
  3. {
  4. ID = c.Guid(nullable: false),FirstName = c.String(nullable: false)
  5. })
  6. .PrimaryKey(t => t.ID);

Id通过00000000-0000-0000-0000-000000000000.

如何将newid()设置为GUID以及我必须设置的位置.

解决方法

我建议只使用长时间的ID类型.它与“GUID”相匹配,并具有一定的性能提升.但是,如果要使用GUID,您应该使用 Sequential GUID并将其设置在构造函数中.我也会将ID设为私人设定者:
  1. public class Sample
  2. {
  3. public Sample() {
  4. ID = GuidComb.Generate();
  5. }
  6. [required]
  7. public Guid ID { get; private set; }
  8. [required]
  9. public string FirstName { get; set; }
  10. }

顺序GUID

  1. public static class GuidComb
  2. {
  3. public static Guid Generate()
  4. {
  5. var buffer = Guid.NewGuid().ToByteArray();
  6.  
  7. var time = new DateTime(0x76c,1,1);
  8. var now = DateTime.Now;
  9. var span = new TimeSpan(now.Ticks - time.Ticks);
  10. var timeOfDay = now.TimeOfDay;
  11.  
  12. var bytes = BitConverter.GetBytes(span.Days);
  13. var array = BitConverter.GetBytes(
  14. (long)(timeOfDay.TotalMilliseconds / 3.333333));
  15.  
  16. Array.Reverse(bytes);
  17. Array.Reverse(array);
  18. Array.Copy(bytes,bytes.Length - 2,buffer,buffer.Length - 6,2);
  19. Array.Copy(array,array.Length - 4,buffer.Length - 4,4);
  20.  
  21. return new Guid(buffer);
  22. }
  23. }

猜你在找的asp.Net相关文章