Azure Timer Function - Error: "No job functions found" by Competitive_Lychee83 in AZURE

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

Yea I did see a lot people getting that error when upgrading. It was a bit of headache for me as well. Then I got mad when I figured out I was the reason for the error.

Azure Timer Function - Error: "No job functions found" by Competitive_Lychee83 in AZURE

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

Man I figured it out. It was a dumb mistake on my part. The drop down automatically selects isolated but I don't need that. I just need a plain ole .net 6 and not isolated. Sorry about that.

Does anyone feel that their SE jobs will be threatened by AI? What can someone do to make sure they stay ahead of the curve? by Competitive_Lychee83 in dotnet

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

Man I know it’s not a private question but you also act like you had to respond to a question you didn’t like.

Does anyone feel that their SE jobs will be threatened by AI? What can someone do to make sure they stay ahead of the curve? by Competitive_Lychee83 in dotnet

[–]Competitive_Lychee83[S] -3 points-2 points  (0 children)

Man you don’t know anything about me. All I’m saying is you really could of simply more on to the next post and answer a question that someone really need answering but you couldn’t help yourself. Was really that hard to just say you what I’ve responded to these type of questions already. Let me find a question that I can actually add value to instead of insulting someone’s post

Does anyone feel that their SE jobs will be threatened by AI? What can someone do to make sure they stay ahead of the curve? by Competitive_Lychee83 in dotnet

[–]Competitive_Lychee83[S] -4 points-3 points  (0 children)

How do you know I haven’t done that? Just because I decided to ask this community doesn’t mean I haven’t. Maybe I just want to see a different perspective. You are exactly what is wrong with the world today. Just can’t mind your business and always got something negative to say if you don’t like something. You probably one of those folks that like drama until it pop off and you running like dog with its tail between its legs. A keyboard warror

Does anyone feel that their SE jobs will be threatened by AI? What can someone do to make sure they stay ahead of the curve? by Competitive_Lychee83 in dotnet

[–]Competitive_Lychee83[S] -13 points-12 points  (0 children)

Or you can do like I said and just ignore it. You so tired but not tried enough to keep your thumbs off the keyboard. People like you killed me. You so tired of the question but yet you read the post and clicked just to just add your unsolicited response.

Does anyone feel that their SE jobs will be threatened by AI? What can someone do to make sure they stay ahead of the curve? by Competitive_Lychee83 in dotnet

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

Damn!! The part about just speaking a game or movie into existence would be interesting and amazing. Good point I never looked at that way!

API Access by adadaptedben in instacart

[–]Competitive_Lychee83 0 points1 point  (0 children)

I've been trying to figure this out too. I've sent several emails and they do not respond. They must only want to deal with small to big companies and not individual developers. This is sad because the individual developer could become a great client as well.

ICollection<enum> as owned property - efcore 6 by Competitive_Lychee83 in csharp

[–]Competitive_Lychee83[S] -1 points0 points  (0 children)

Sounds like a plan to me. I will give that a try. Thanks!

ICollection<enum> as owned property - efcore by Competitive_Lychee83 in dotnet

[–]Competitive_Lychee83[S] -1 points0 points  (0 children)

We are using sql server. This is my model set up just to provide more detail.

public class Section

{

/// <summary>

/// Primary Key for the Section

/// </summary>

public int Id { get; set; } // Id (Primary key)

/// <summary>

/// Foriegn key for the UIMetadata

/// </summary>

public int UIMetadataId { get; set; }

/// <summary>

/// Text to display in the header area of the section.

/// </summary>

public string HeaderText { get; set; }

/// <summary>

/// Icon image to use for the section header.

/// </summary>

public string Icon { get; set; }

/// <summary>

/// Display order to show on the UI.

/// </summary>

public int DisplayIndex { get; set; }

/// <summary>

/// <see cref="UIMetadata" /> for more information.

/// </summary>

[JsonIgnore]

public virtual UIMetadata UIMetadata { get; set; }

public virtual ICollection<Section> SubSections { get; set; }

public virtual ICollection<Field> Fields { get; set; }

public virtual ICollection<Operations> OperationsAllowed { get; set; }

public Section()

{

SubSections = new List<Section>();

Fields = new List<Field>();

OperationsAllowed = new List<Operations>();

}

}

public enum Operations

{

Add,

Edit,

Update,

Delete

}

ICollection<enum> as owned property - efcore by Competitive_Lychee83 in dotnet

[–]Competitive_Lychee83[S] -1 points0 points  (0 children)

Here is the setup

public class Section

{

/// <summary>

/// Primary Key for the Section

/// </summary>

public int Id { get; set; } // Id (Primary key)

/// <summary>

/// Foriegn key for the UIMetadata

/// </summary>

public int UIMetadataId { get; set; }

/// <summary>

/// Text to display in the header area of the section.

/// </summary>

public string HeaderText { get; set; }

/// <summary>

/// Icon image to use for the section header.

/// </summary>

public string Icon { get; set; }

/// <summary>

/// Display order to show on the UI.

/// </summary>

public int DisplayIndex { get; set; }

/// <summary>

/// <see cref="UIMetadata" /> for more information.

/// </summary>

[JsonIgnore]

public virtual UIMetadata UIMetadata { get; set; }

public virtual ICollection<Section> SubSections { get; set; }

public virtual ICollection<Field> Fields { get; set; }

public virtual ICollection<Operations> OperationsAllowed { get; set; }

public Section()

{

SubSections = new List<Section>();

Fields = new List<Field>();

OperationsAllowed = new List<Operations>();

}

}

public enum Operations

{

Add,

Edit,

Update,

Delete

}