EF SQL question
if I have the following columns:
where
id
and dateCreated
are required
should I make englishL10n
and bosnianL10n
required too?
my front end would make a POST one at a time (but it could do both if that's better)1 Reply
but it would GET both at once
so should i have a table look like this
and my GET would have to somehow combine the
id2
and id3
row (since they are the latest dateCreated
) ----- is such a GET possible?
ignore this if it doesn't make sense 😛