这就是我如何将新列添加到标识角色表中。
public class ApplicationRole : IdentityRole
{
public ApplicationRole() : base() { }
public ApplicationRole(string name, long customId) : base(name)
{
this.CustomId= customId;
}
public virtual long CustomId{ get; set; }
}
在dbContext中,我添加了
modelBuilder
My Form Looks Like this
<form action="" method="post">
<input type="text" name="isbn" placeholder="Enter 10/13 Digit ISBN Number To Sell Your Book"/>
<input type="submit" name="Search Isbn">
</form>
// now i am n
很抱歉,如果这个问题是重复的,但我尽力去寻找这个问题的答案,却找不到答案。
问题是,我希望使用中声明的findAll()方法来检索某个表中的所有条目。
实现JPA (请参阅下面的代码)的接口具有Type a Super (Person),用户、Manager和管理员都扩展了它。这些子类使用不同的@Table参数进行注释,以使用户去USERs表,等等。
@Repository
public interface UserRepository extends JpaRepository<Person, Integer> {
Person deleteByUsernameAndEm