如何在mvc 5中添加角色?

时间:2015-09-04 19:34:06

标签: asp.net-mvc-5 roles asp.net-mvc-5.1 asp.net-roles

如何在空的mvc 5项目中添加角色?

我在google上搜索过,但是我找不到项目的教程。

有人可以给我一个教程链接或在这里帮助我吗?

1 个答案:

答案 0 :(得分:0)

这样:

BigInteger i = BigInteger.valueOf(99L);
BigInteger j = BigInteger.valueOf(1000000000000L);
BigInteger ans = BigInteger.ZERO;
if (j.compareTo(i) > 0) {
    BigInteger sumTill_j = (j.multiply(j.add(BigInteger.ONE))).divide(BigInteger.valueOf(2L));
    BigInteger sumTill_i = ((i.subtract(BigInteger.ONE)).multiply(i)).divide(BigInteger.valueOf(2L));
    ans = sumTill_j.subtract(sumTill_i);
    System.out.println(ans);
}