मैंने कई परियोजनाओं पर ठीक यही किया है
उदाहरण के लिए मेरे पास एएसपीनेट यूज़र से अधिसूचनाओं में से कई रिश्तों में से एक है। तो मेरे ApplicationUser वर्ग में IdentityModels.cs के अंदर मेरे पास
. हैpublic virtual ICollection<Notification> Notifications { get; set; }
माई नोटिफिकेशन क्लास का उल्टा है
public virtual ApplicationUser ApplicationUser { get; set; }
डिफ़ॉल्ट रूप से EF तब अधिसूचना से AspNetUsers को एक कैस्केड डिलीट बना देगा जो मैं नहीं चाहता - इसलिए मेरे पास यह मेरे संदर्भ वर्ग में भी है
modelBuilder.Entity<Notification>()
.HasRequired(n => n.ApplicationUser)
.WithMany(a => a.Notifications)
.HasForeignKey(n => n.ApplicationUserId)
.WillCascadeOnDelete(false);
बस याद रखें कि AspNetUSers की परिभाषा को IdentityModels.cs के अंदर ApplicationUser वर्ग में विस्तारित किया गया है जो आपके लिए विज़ुअल स्टूडियो मचान द्वारा उत्पन्न किया गया है। फिर इसे अपने ऐप में किसी भी अन्य वर्ग/तालिका के रूप में मानें
अद्यतन - यहां पूर्ण मॉडलों के उदाहरण दिए गए हैं
public class ApplicationUser : IdentityUser
{
[StringLength(250, ErrorMessage = "About is limited to 250 characters in length.")]
public string About { get; set; }
[StringLength(250, ErrorMessage = "Name is limited to 250 characters in length.", MinimumLength=3)]
public string Name { get; set; }
public DateTime DateRegistered { get; set; }
public string ImageUrl { get; set; }
public virtual ICollection<Notification> Notifications { get; set; }
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}
public class Notification
{
public int ID { get; set; }
public int? CommentId { get; set; }
public string ApplicationUserId { get; set; }
public DateTime DateTime { get; set; }
public bool Viewed { get; set; }
public virtual ApplicationUser ApplicationUser { get; set; }
public virtual Comment Comment { get; set; }
}
}