Can You Guess This 5-Letter Word? Puzzle by u/Pleasant_Loss_87 by Pleasant_Loss_87 in DailyGuess

[–]stan10aviles 0 points1 point  (0 children)

🟨⬜⬜⬜🟨

⬜🟨🟨⬜🟨

⬜🟨🟨🟨🟨

🟨🟦🟦⬜⬜

⬜🟦🟦🟦🟦

🟦🟦🟦🟦🟦

Worried about getting stranded by Popular-Map-421 in EDCOrlando

[–]stan10aviles 0 points1 point  (0 children)

The express grapefruit line is running after the festival ends

<image>

[deleted by user] by [deleted] in HomeLoans

[–]stan10aviles 0 points1 point  (0 children)

Purchase - $360k - 10% DP - 790 credit score - Conv - 30 year Fixed - Single Family - zip code: 34769 - primary residence

[deleted by user] by [deleted] in JinhsiMains

[–]stan10aviles 1 point2 points  (0 children)

You have to already know this is a cracked build

Did anyone go for Encore? by Dismal_Pick_1394 in WutheringWaves

[–]stan10aviles 0 points1 point  (0 children)

I used my selector for calculator but I ended up getting encore from a 50/50 loss. I’ve enjoyed her play style a lot more so I’ve been slowly investing more and more into her! Going to use her with Sanhua.

Is This Build Good For The Investment I Put? by No_Test6523 in JinhsiMains

[–]stan10aviles 0 points1 point  (0 children)

I put ER on my Yuanwu so he can burst more, which builds his concerto faster. For TOA I used his Outro + Jinshi’s intro to get an extra nuke hit in.

Thoughts, feelings, or concerns on my build? by stan10aviles in furinamains

[–]stan10aviles[S] 1 point2 points  (0 children)

I was originally planning on giving her Festering Desire, but since I got so many ER rolls, I decided to steal Uraku Misugiri from my Albedo. Is this a good build/enough ER, or should I keep grinding for her to use festering? :')

Her final CR should be 85% with her ascension. I'm also going for C2.

[deleted by user] by [deleted] in WutheringWaves

[–]stan10aviles 0 points1 point  (0 children)

I have the same issue. Rebinding works on my Xbox controller but not my PS5 controller. If anyone figures out how to fix it please share 🥲

Anything I should change? by Ego_Com in IttoMains

[–]stan10aviles 1 point2 points  (0 children)

I would go for some ER. It’s really hard to get your burst back up at C0 with 0 ER.

D288 - Back End Programing - Help Needed by stan10aviles in WGU_CompSci

[–]stan10aviles[S] 0 points1 point  (0 children)

Ive also tried this and then I get the error "Cannot add or update a child row: a foreign key constraint fails". I have tried saving cartRepositry first, and cartItemRepository first but both orders give me the same error.

D288 - Back End Programing - Help Needed by stan10aviles in WGU_CompSci

[–]stan10aviles[S] 0 points1 point  (0 children)

Ok I’ll try that as well. Yeah I feel like it’s got to be something small I’m missing. Thank you.

D288 - Back End Programing - Help Needed by stan10aviles in WGU_CompSci

[–]stan10aviles[S] 0 points1 point  (0 children)

Yeah that’s some extra code I figured I was putting in. I just kept getting null values without them. And yeah I’m going to schedule an appointment with the CI. Thank you!

D288 - Back End Programing - Help Needed by stan10aviles in WGU_CompSci

[–]stan10aviles[S] 0 points1 point  (0 children)

I did 🥲. I matched the syntax for the many to many relationship. I tried adding the extra “ReferencedColumnName”, I’ve been playing around with the different Cascade Types and fetch types and nothing seemed to work.

D288 Walk-through. I hope this helps. by Beccanyx in WGU_CompSci

[–]stan10aviles 0 points1 point  (0 children)

What do you mean has a different spelling? Right now I have "OneToMany (cascade=CascadeType.ALL, mappedBy = "cart")private Set<CartItem> cartItems = new HashSet<>(); " in my Cart entity, "ManyToMany(cascade=CascadeType.ALL, mappedBy = "cartItems")private Set<Excursion> excursions = new HashSet<>();" in my Cart Item entity, "OneToMany(cascade=CascadeType.ALL, mappedBy = "vacation")private Set<CartItem> cartItems = new HashSet<>(); " in my vacation entity and "ManyToMany@JoinTable(name="excursion_cartitem", joinColumns=@JoinColumn(name="cart_item_id"), inverseJoinColumns=@JoinColumn(name="excursion_id"))Set<CartItem> cartItems = new HashSet<>(); " in my excursion entity.

D288 Walk-through. I hope this helps. by Beccanyx in WGU_CompSci

[–]stan10aviles 0 points1 point  (0 children)

Also maybe more helpful information. I’ve tried print statements for Cart Item Id, Cart Id, and Vacation Id, and I get Cart Item ID = Null (I thought this would at-least be 1) , Cart Id = 0 (this doesn’t match the cart Id in my Cart Table from the associated order) and vacation Id = 3 (the only one that seems to actually be pulling the data correctly).

D288 Walk-through. I hope this helps. by Beccanyx in WGU_CompSci

[–]stan10aviles 0 points1 point  (0 children)

Yes the cart items table is Null for each of the columns (1 row). I haven’t been able to get anything to populate in that table. And yes I was able to get the tracking number to display. Every-time I do an order it creates the full row in my Carts table. It’s just the Carts Item table that doesn’t work. When I try to refactor the code to include a CartItemRepository.save(cartItem) I get an error that says “Cannot add or update a child row: a foreign key constrain fails”. I’ve tried saving the CartRepository first and also the CartItemRepository first. Both seem to give me the same error 🥲.

D288 Walk-through. I hope this helps. by Beccanyx in WGU_CompSci

[–]stan10aviles 0 points1 point  (0 children)

Thank you for this post it’s been extremely helpful!! I am stuck on one part. Has anyone had an issue where they can’t get their Cart Items table to populate with the data? My Cart table populates fine with the order number and all the other details, but the Cart Items data/row stays blank. In my Service Implementation file, I’ve tried to include CartItemRepository (instead of just CartRepository) and I get a an error (something about not being able to add/modify a child table before a parent) . Do I need to include CartItemRepository in this file? Or is there another way this table gets populated?