skip to Main Content

Asp.net – After saving the data to the database once, it does not save the second one

I'm pretty new to this industry. This is the Create method in BaseRepository: public async Task CreateAsync(TEntity entity) { await _db.Set<TEntity>().AddAsync(entity); await _db.SaveChangesAsync(); } This is the Create method inside the UserService class. public ResultService<UserCreateDTO> Create(UserCreateVM userCreateVM) { ResultService<UserCreateDTO> result…

VIEW QUESTION

Asp.net – Applying bootstrap classes to aspRadioButton group

I have this asp radio button group, which i want to look like bootstrap selectable cards ... <asp:RadioButtonList ID="origin_channel" runat="server" AutoPostBack="True"RepeatDirection="Horizontal"> <asp:ListItem Value="REP">Representatives</asp:ListItem> <asp:ListItem Value="VIP">VVIPs</asp:ListItem> <asp:ListItem Value="OTH">Others</asp:ListItem> </asp:RadioButtonList>

VIEW QUESTION
Back To Top
Search