framework tag

33 questions


2 answers
100 views
0
What is the validity of the SQL Server index when using EntityFramework?

This is the first development in the Entity Framework 6, ASP.NET (MVC) project (C#).DB is the Azure SQL database.We created a non-clustered index on age because the ID is the primary key and the membe...


2 answers
86 views
0
If you save a Decimal value to SQLServer, it will only save up to two decimal places.

EntityFramework Version=6.0.0.0.Net Framework targetFramework=4.6.1SQL Server Express 13.0.4001.0In the table on SQL Server, there is a column created with Decimal (12,3) and Decimal (18,3) that is be...


1 answers
89 views
0
Error if url parameter in restfulAPI contains %

I am creating a WEB API in playframework 2.x, but I get a Bad Request error when the url parameter contains %.For example, when searching with the string 20% off...Bad Request For request 'GET/search?...

2 years ago

1 answers
102 views
0
About updating on scala scaleikejdbc

We are developing at scala.I wanted to process CRUD with code created automatically by scalikejdbc.Only update statements are not allowed. object hoge extensions SQLSyntaxSupport [hoge] { def save(ent...


1 answers
67 views
0
Does the Table attribute not work in Entity Framework Core 1.1?

If the table name of the DB already exists is mytable, I attribute it as follows, but it doesn't recognize it.What should I do?Hoge.cs [Table(mytable)]public class Hoge {...}MyDbContext.cs public clas...

2 years ago

1 answers
69 views
0
EntityFramework: How do I issue an auto-increment ID other than `SaveChanges()`?

Data from self-made SRPG games are stored in the database under the Entity Framework Code-First.The tables include Character, Item, Weapon, Equipment, and so on.I was able to implement it normally, bu...

2 years ago

1 answers
83 views
0
I want specs2 to do something in common before running the test.

I'd like to create a test case for the APIs that are supposed to log in, but I need to log in as a preliminary step.What should I do if I need to log in before running the test and run the test case u...

2 years ago

1 answers
88 views
0
Sometimes I cannot get hangoutLink for events created in Java

The Java app uses Calendar API v3 (v3-rev260-1.23.0) to insert the event.During insert, the calendar user is guest-registered with the attendees parameter.However, sometimes hangoutLink cannot be retr...


1 answers
90 views
0
I want to receive the stored procedure OUTPUT Parameter

I am developing an API with Visual Studio 2013 c#.I'm going to use StoredProcedure to select the data in the table.I don't know how to get the retrieved data with C# code.I am using ObjectParameter, b...


1 answers
102 views
0
Enter admin as a Facebook user in Django's social_auth

I use the django-social-auth plug-in in Django.I would like to join Django's admin as a user generated after I authenticate with Facebook.First, create this user on models.py and To force is_staff to ...

« - 3 - »

© 2024 OneMinuteCode. All rights reserved.