小编Jus*_*mes的帖子

ASP.NET Core(.NET Core)和ASP.NET Core(.NET Framework)之间的区别

ASP.NET Core Web(.NET Core)与ASP.NET Core Web(.NET Framework)之间有什么区别?

.NET Framework是否提供 .NET Core 类似的性能

.net c# .net-core asp.net-core

72
推荐指数
3
解决办法
2万
查看次数

除非在启用admin-commands的情况下创建连接,否则此命令不可用

尝试使用booksleeve在Redis中运行以下内容时.

using (var conn = new RedisConnection(server, port, -1, password))
{
    var result = conn.Server.FlushDb(0);
    result.Wait();
}
Run Code Online (Sandbox Code Playgroud)

我收到一个错误说:

除非使用admin-commands创建连接,否则此命令不可用"

我不确定如何以管理员身份执行命令?我是否需要在具有管理员权限的数据库中创建一个a/c并使用该权限登录?

redis booksleeve

28
推荐指数
3
解决办法
9496
查看次数

Dapper参数替换不适用于Top

这是我的sql

var maxLimit =100;
var sql = "Select Top @MaxLimit from Table WHere data =@Id"
conn.Query<Result>(sql, new  {
                Id = customerId,
                MaxLimit = maxLimit
            })
Run Code Online (Sandbox Code Playgroud)

但是我遇到了系统错误

@MaxLimit附近的语法不正确.

Dapper无法参数化Top或Fetch等字段吗?

c# sql-server dapper

20
推荐指数
2
解决办法
3477
查看次数

将String []数组转换为RedisKey []数组

试着用

KeyDelete(RedisKey[] keys, CommandFlags flags = CommandFlags.None);
Run Code Online (Sandbox Code Playgroud)

我有一个string []数组,当我搜索转换这些数据类型时,我没有看到任何示例.我甚至不确定如何创建一个新的RedisKey.

试着

RedisKey redisKey = new RedisKey("d");
Run Code Online (Sandbox Code Playgroud)

以上不起作用,有什么建议吗?

c# redis stackexchange.redis

16
推荐指数
1
解决办法
5621
查看次数

使用Powershell添加和删除Xmlnode

我试图添加和删除多个xml文件中的元素.我遇到了两个问题.它自动删除空元素,然后它没有删除我想要的东西

我有这样的xml

<Entity>
   <App>
      <item1>1</item1>
      <emptyItem/>
      <person>
         <itemToRemove>true</itemToRemove>
         <emptyItem/>
         <otheritem>1</otheritem>
      </person>
      <person>
         <itemToRemove>false</itemToRemove>
         <emptyItem/>
         <otheritem>3</otheritem>
      </person>
      <person>
         <itemToRemove>false</itemToRemove>
         <emptyItem/>
         <otheritem>3</otheritem>
      </person>
   </App>
</Entity>
Run Code Online (Sandbox Code Playgroud)

我想要的是什么

<Entity>
   <App>
      <item1>1</item1>
      <emptyItem/>
      <person>

         <emptyItem/>
         <otheritem>1</otheritem>
      </person>
      <person>

         <emptyItem/>
         <otheritem>3</otheritem>
      </person>
      <person>

         <emptyItem/>
         <otheritem>3</otheritem>
      </person>
      <newItemtoAdd>2001-01-01</newItemtoAdd>
   </App>
</Entity>
Run Code Online (Sandbox Code Playgroud)

我在上面的输出xml上添加了newItemtoAdd元素并删除了itemToRemove.

with the current script i have used what i get is this

<Entity>
   <App>
      <item1>1</item1>
      <emptyItem/>
      <person>
         <itemToRemove>true</itemToRemove>
         <otheritem>1</otheritem>
      </person>
      <person>
         <itemToRemove>false</itemToRemove>
         <otheritem>3</otheritem>
      </person>
      <person>
         <itemToRemove>false</itemToRemove>
         <otheritem>3</otheritem>
      </person>
      <newItemtoAdd>2001-01-01</newItemtoAdd>
   </App>
</Entity>
Run Code Online (Sandbox Code Playgroud)

删除了我不希望发生的emptyItem节点,添加了newItemtoAdd这是好的,并且没有删除itemToRemove节点,这不是我想要的

这是我的剧本

Get-ChildItem D:\Projects\*.xml | …
Run Code Online (Sandbox Code Playgroud)

xml powershell powershell-2.0 xml-parsing

14
推荐指数
2
解决办法
2万
查看次数

附加更新实体框架

我正在尝试使用附加使用EF 5.x对表进行更新.此表包含其他所需的字段,但它是现有行.所以我试图更新没有任何提取.userid是表的主键.我正在尝试更新状态.但它会抛出一个EntityValidationErrors,表示需要密码,这是另一个必填字段,但不是主键.由于这是对现有行的更新,为什么需要提供需要更新的字段?

    var webUser = new WebUser() { UserId = webUserId, OnlineStatus = (sbyte)status };
    using (var dbxupdate = new xEntities())
    {
        try
        {
            dbxupdate.WebUsers.Attach(webUser);
dbxupdate.Entry(webUser).State = EntityState.Modified;
            dbxupdate.Entry(webUser).Property(x => x.OnlineStatus).IsModified = true;
            dbxupdate.SaveChanges();
        }
        catch (DbEntityValidationException dbEx)
        {
            foreach (var validationErrors in dbEx.EntityValidationErrors)
            {
                foreach (var validationError in validationErrors.ValidationErrors)
                {
                    Trace.TraceInformation("Property: {0} Error: {1}", validationError.PropertyName, validationError.ErrorMessage);
                }
            }
        }
    }
Run Code Online (Sandbox Code Playgroud)

c# ado.net entity-framework

8
推荐指数
2
解决办法
2万
查看次数

将对象转换为KeyValuePair

我有一个IEnumerable<Entityclass>有一个string和一个int成员的实体.我需要将其转换为数组,KeyValuePair<string, double>反之亦然.

它失败并出现强制转换错误.

[DataContract]
public class Entityclass
{
    [DataMember]
    public string text{ get; set; }
    [DataMember]
    public int textcount{ get; set; }
 }
Run Code Online (Sandbox Code Playgroud)

我有 IEnumerable<Entityclass>

  • 我如何转换IEnumerable<Entityclass>为数组KeyvaluePair<string, double>[]

  • 如何将KeyvaluePair<string, double>[]数组转换为KeyvaluePair<string, int>[]数组?

  • 如何转换KeyvaluePair<string, double>回IEnumerable?

我试过了:

  • topics is IEnumerable<Entityclass>;
  • topics.Cast<KeyValuePair<string, double>>().ToArray(); 失败并出现施法错误

.net c# linq .net-4.0 keyvaluepair

6
推荐指数
1
解决办法
1万
查看次数

如何让Web Api将Json.net序列化的字符串对象正确地发送回客户端?

我正在使用JsonConvert.SerializeObject()序列化IEnumerbale对象; 它生成带引号的字符串和带空格的转义字符

从web Api控制器我使用下面的代码返回该字符串

[HttpGet]
public string GetDegreeCodes(int id)
{
    string result = //output from JsonConvert.SerializeObject( );
    return result;
}
Run Code Online (Sandbox Code Playgroud)

"[{\"DegreeId \":1,\"DegreeName \":\"High School \",\"ImageSrc \":\" http://bootsnipp.com/apple-touch-icon-114x114-pre\","描述\":\"获得高中学位\ r \"},{\"DegreeId \":2,\"DegreeName \":\"Associate \",\"ImageSrc \":\" http ://bootsnipp.com/apple-touch-icon-114x114-pre \",\"描述\":\"获得副学士学位\ r \"},{\"DegreeId \":3,\"DegreeName \" :\"Bachelor \","ImageSrc":\" http://bootsnipp.com/apple-touch-icon-114x114-pre \",\"描述\":\"获得学士学位\ r \n" },{\"DegreeId \":4,\"DegreeName \":\"Masters \",\"ImageSrc \":\" http://bootsnipp.com/apple-touch-icon-114x114-pre \" ,\"Description \":\"获取硕士学位\ r \"},{\"DegreeId \":5,\"DegreeName \":\"Doctrate \",\"ImageSrc \":\" http:/ /bootsnipp.com/apple-touch-icon-114x114-pre \",\"描述\":\"获得博士学位\"}]"

这是我的ajax,由于额外的包装引号和转义字符,它无法正确识别JSON,

$.ajax({
        url: "/api/helloservice/getdegreecodes",
        type: "get",
        contentType: "application/text",
        data: { id: 1 }
    }).done(function (data) …
Run Code Online (Sandbox Code Playgroud)

c# asp.net json.net booksleeve asp.net-web-api

6
推荐指数
1
解决办法
1万
查看次数

缓存静态表Mysql

使用MYSQL,使用EF 5.x和MVC3.我有一个大约320万行的表,有城市,乡村组合.我在客户端有一个自动完成文本框,它接受城市的搜索词并使用jQuery/ajax发回建议.

我面临的挑战是,当我第一次使用它时,我将这个表缓存到我的内存中:

        CityData = DataContext.Citys.OrderBy(v => v.Country).ToList();

        if (CityData.Any())
        {
            // Put this data into the cache for 30 minutes
            Cache.Set("Citys", CityData, 30);
        }
Run Code Online (Sandbox Code Playgroud)

即使我将db-context超时设置为5分钟,这也会超时.当我使用MySQL客户端对数据库运行此SQL时,需要大约3分钟来拉取所有行.

将此数据读入缓存的最佳方法是什么,或者我应该做些不同的事情?如果是这样,我可以将表直接缓存到MySQL缓存中吗?或者我应该将术语搜索直接发送到DB而不是使用缓存中的数据.

c# mysql asp.net-mvc caching entity-framework

5
推荐指数
1
解决办法
593
查看次数

SQLite 作为 SQL Server 的内存数据库

我的设置类似于使用内存中 SQLite ( http://mikhail.io/2016/02/unit-testing-dapper-repositories/ ) 使用以下库测试 SQL Server 的 dapper 调用:https://github。 com/ServiceStack/ServiceStack.OrmLite

我正在为我的 DAL 使用带有临时 SQL 的 dapper,并希望在不依赖 SQL Server 的情况下测试数据访问层。我使用了 SQLite 内存数据库。问题是 SQL Server 和 SQLite 之间的 SQL 语法不同。

例如,我有一个查询,它使用 offset 和 fetch next 返回分页结果,但 SQLite 仅支持 limit 和 offset。

如果您对我进行内存单元测试有什么建议怎么办?我没有使用模拟数据库上下文去 EF 路线,因为 dapper 的性能更高,并且不想使用存储过程,因为我也想测试我的 SQL。我不想模拟我的数据库调用。

c# sql-server sqlite unit-testing dapper

5
推荐指数
1
解决办法
2221
查看次数